https://github.com/prabirshrestha/reactjs-boilerplate
ReactJS boilerplate code with WebPack
https://github.com/prabirshrestha/reactjs-boilerplate
Last synced: 2 months ago
JSON representation
ReactJS boilerplate code with WebPack
- Host: GitHub
- URL: https://github.com/prabirshrestha/reactjs-boilerplate
- Owner: prabirshrestha
- Created: 2014-09-11T05:07:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:26:21.000Z (over 1 year ago)
- Last Synced: 2025-02-10T03:42:40.848Z (4 months ago)
- Language: JavaScript
- Size: 23.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ReactJS Boilerplate with WebPack
## Getting Started
```bash
npm install
npm start
```Open http://localhost:3000 to view the site.
If you would like to build the output and not watch the file. Run `npm run-script build` instead.
### dev builds
```bash
npm install
npm run-script build
```### prod builds
```bash
npm install
export NODE_ENV=production
npm run-script build-prod
```For windows use `SET NODE_ENV=production` instead.
## Run Test
```bash
npm install
npm test
```### Run test in CI
```bash
npm install
npm test:ci
```