https://github.com/mbasso/npm-react-boilerplate
Minimal dev environment to build React modules
https://github.com/mbasso/npm-react-boilerplate
Last synced: 10 months ago
JSON representation
Minimal dev environment to build React modules
- Host: GitHub
- URL: https://github.com/mbasso/npm-react-boilerplate
- Owner: mbasso
- License: mit
- Created: 2016-02-28T21:22:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-28T21:26:33.000Z (over 10 years ago)
- Last Synced: 2025-02-07T07:46:26.616Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Npm-react-boilerplate
The minimal dev environment to build React modules.
## Usage
Clone repository and run
```
npm install
```
You have to change default values in ```package.json``` to build your own module.
## Babel
This module use [babel](https://babeljs.io/) to compile source code, allowing you to use es6 syntax. Source code is automatically compiled in ```lib``` folder before publish, as you can see in ```package.json```.
## Linting
This boilerplate project includes also React-friendly ESLint configuration.
```
npm run lint
```
## Author
**Matteo Basso**
- [github/mbasso](https://github.com/mbasso)
- [@Teo_Basso](https://twitter.com/Teo_Basso)
## Copyright and License
Copyright (c) 2016, Matteo Basso.
Npm-react-boilerplate source code is licensed under the [MIT License](https://github.com/mbasso/npm-react-boilerplate/blob/master/LICENSE.md).