alan-mj-lin / Sporeas

TJC projection webapp for service use.
1 stars 0 forks source link

Front-End Ovehaul: Migrate front end to use React #99

Open alan-mj-lin opened 4 years ago

hchiam commented 4 years ago

besides taking ideas from the other project, here are some quick setup tools that create projects for you, with some best practices built-in:

facebook's official create-react-app:

npx create-react-app my-app && cd my-app && npm start;

or one of the many yeoman generators that generate a react+redux app for you:

https://www.npmjs.com/package/generator-create-redux-app

npm install -g yo && npm install -g generator-create-redux-app;
mkdir project-name && cd project-name && yo create-redux-app;