Skip to content

vinboxx/react-starter-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-starter-kit

Installation

npm install

Running App

npm start

This command will run app in development mode. Open http://localhost:8080 to view it in the browser. Browser will automatically reload if you make changes to the code.

Production build

npm run build

This command will creating a minified bundle for you in dist folder

What's inside?

File Structure

your-app
├── config
│   └── webpack.common.js
│   └── webpack.dev.js
│   └── webpack.prod.js
├── dist (Auto generated from build process)
├── node_modules (Auto generated when run npm install)
├── src
│   └── App.js
│   └── index.html
│   └── index.js
├── .bebalrc
├── .editorconfig
├── .gitignore
├── package.json
└── README.md

Downgrade to React 15

If your dependensies have an issue with react 16, you can downgrade to react 15 using this command

npm install -DE react@15 react-dom@15

Releases

No releases published

Packages

No packages published