this is an idiot-proof full-stack starting point for modern web development
- universal/isomorphic/SSR react.JS: you want user friendly?
- socket.io: SSR appeal. instant data transfer between server + client
- webpack: modern web infrastructure
- redux: app state container
- rethinkDB connection: modern noSQL database for realtime software -> how to install
git clone https://github.com/ddaaggeett/webstarter-with-database.git
cd webstarter-with-database/
npm install
rethinkdb
visit database
click -> Add Database = 'webstarter'
click -> Add Table = 'appState'
visit data explorer
run command at any time:
r.db('webstarter').table('appState');
npm run universal:dev
visit application: http://127.0.0.1:8081