Open alan-mj-lin opened 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:
create-react-app
npx create-react-app my-app && cd my-app && npm start;
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;
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
:or one of the many yeoman generators that generate a react+redux app for you:
https://www.npmjs.com/package/generator-create-redux-app