/react-boilerplate

Set of reasonable defaults for my react projects

Primary LanguageJavaScript

React Boilerplate

More often than not, I try to set up new react projects which have more or less the same functionality. For my usecases create-react-app seems like a overkill and it kind of abstracts all the tools. I wanted to learn the underlying tools too. So, I created this template repository for my future projects.

This boilerplate uses:

  1. Prettier - For formatting
  2. Eslint - which extends react-recommended best practices
  3. Parcel - For bundling and live reloading
  4. React - as a UI library
  5. React-DOM - to compliment react
  6. React Router - For navigation

To run

npm run dev

To build

npm run build

To lint (In case of trying new editors out)

npm run lint

To format (In case of trying new editors out)

npm run format


TODO

  • Tests defaults
  • One Click Deploy