A basic template for an Express API
Clone the repository
$ git clone https://github.com/LucasCtrl/express-api-template
Install all the dependencies
$ yarn install
Start a dev server with nodemon for hot reload when you make some changes
$ yarn dev
Start the server in production mode
$ yarn start
Lint your code
$ yarn lint
- Fork it (https://github.com/LucasCtrl/express-api-template/fork)
- Create your feature branch (
git checkout -b feature/fooBar) - Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request