Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 1.24 KB

CONTRIBUTING.md

File metadata and controls

45 lines (32 loc) · 1.24 KB

Getting Started

We would ❤️ to have pull requests from you. So here is how to start development with Node Express Boilerplate.

First fork and clone the repo:

git clone https://github.com/5orenso/node-simple-boilerplate.git

Then run this to set it all up:

$ cd node-simple-boilerplate
$ npm install

In addition to this I recommend using npm to watch your files and perform code analysis and run tests every time a file changes:

$ npm run test:watch

You are now ready to start doing your changes.

Testing

Node Simple Boilerplate uses npm and Jest to run test. Take a look in the __tests__ directory and always add tests to your changes.

Changes

If you want to do any changes please create an issue.

Bug fixes is of course welcome at any time 👍

Pull Requests

So you are ready to make a PR? Great! 😄

But first make sure you have checked some things.

  • Your code should follow the code style guide provided by .eslintrc by running npm run lint or npm run test
  • Don't commit build changes. No dist/ or bin/ changes in the PR.