Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasbento/module-boilerplate
Module boilerplate to quickly start packages
https://github.com/lucasbento/module-boilerplate
boilerplate boilerplate-template module npm package yarn
Last synced: 3 days ago
JSON representation
Module boilerplate to quickly start packages
- Host: GitHub
- URL: https://github.com/lucasbento/module-boilerplate
- Owner: lucasbento
- License: mit
- Created: 2017-10-03T07:36:43.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-26T16:55:21.000Z (over 6 years ago)
- Last Synced: 2024-10-18T09:19:19.191Z (28 days ago)
- Topics: boilerplate, boilerplate-template, module, npm, package, yarn
- Language: JavaScript
- Size: 43 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
module-boilerplate
Module boilerplate to quickly start packages.## Getting started
Simply change [index.js](https://github.com/lucasbento/module-boilerplate/blob/master/src/index.js) file to your code.
### Available scripts
1. **Build**: runs Babel & outputs the bundle on `./dist`;
1. **Lint**: uses ESLint to lint all the files following [Airbnb's JavaScript code style](https://github.com/airbnb/javascript);
1. **Test**: uses Jest to run the tests;
1. **Watch**: runs Babel in watch mode to build on file changing.> All the scripts can be seen on [package.json](https://github.com/lucasbento/module-boilerplate/blob/master/package.json#36).