README
JN React Boilerplate 🚂
This barebones React boilerplate generate outputs an app using the following tools:
- Language: React
- Build Tool: Parcel
- Styling Library: styled-components
The outputted folder directory is as follows:
src
│ package.json
│
└─- app
│ │ index.html
│ │ index.js (entry point)
└─- assets
│ │ favicon.ico
└─- components
└─- data (removable)
└─- utilities
│ └─- styles (optional styled-components configurations)
| | helpers.js
Getting Started
Generate your app
$ npx jn-react-boilerplate
Navigate into your newly generate
./app
directory$ cd app
Run a fresh
npm install
$ npm install
Start your app!
$ npm start