DEV Community

Discussion on: How would you build a full stack Node.js web app today?

Collapse
 
kalevski profile image
Daniel Kalevski

server:
express.js
sequelize
source in ES6 stage-0 (babeljs)

client:
Reactjs
Redux

Database:
MySQL for production
Sqlite for development
Redis as key store for things like tokens for auth and data caching

Migrations:
custom script based on sequelize

proxy server:
nginx

everything packed in docker containers and runned with docker-compose