Generated by OSS Project Generator.
An awesome project
Long description.
Install package
$ npm install --save js-games
Say It works!
const lib = require('js-games');
lib.hello((err, message) => {
if (err) return console.error(err);
console.log(message);
});
- Cloning the repo
$ git clone https://github.com/hrsalles/js-games.git
- Installing dependencies
$ npm install
- Running scripts
Action | Usage |
---|---|
Starting development mode | npm start |
Linting code | npm run lint |
Running unit tests | npm run jest |
Running code coverage | npm run coverage |
Running lint + tests | npm test |
Sending coverage results to Coveralls.io | npm run coveralls |