package.js
Version:
A simple (custom) package (auto) loader for node.js apps which supports NPM or other package managers
15 lines (14 loc) • 538 B
Markdown
# CONTRIBUTING
- Fork it!
- Clone your fork
- Install development dependencies
- ```cd package.js;```
- ```npm install;```
- Create your feature branch: `git checkout -b my-new-feature;`
- Add a test for each new code
- Add add your new code
- Run the tests: `npm test;`
- Check the coverage ```npm run cover-html;``` will produce a file called ```coverage.html;```
- Commit your changes: `git commit -am 'Add some feature'`
- Push to the branch: `git push origin my-new-feature`
- Submit a pull request :D