0.0.2 • Published 2 years ago

@sergiorivera/create-ned-boilerplate v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

N.E.D. boilerplate

A lightweight yet powerful boilerplate for developing modern RESTful APIs with Node.js & Express 😎

nodejs + docker logo

Features:

  • TypeScript: supported by default (as it should be).
  • Express API: routes, middlewares, controllers and configs.
  • Unit tests: with Jest and Supertest for ease of use.
  • OAUTH 2.0: boilerplate config + middleware for authenticated requests.
  • Docker: dockerized development environment + production grade image.
  • ESLint: with recommended rules for enforcing a cohesive coding style.

In order to start developing your REST API simply run:

npm run docker:dev

For running the automated tests use:

npm run docker:test

To build (and push) the production Docker image:

docker buildx build --platform linux/arm64 -t <username|organization>/<repository> --push .