This repo can be used as a starting point for backend development with Nodejs. It comes bundled with Docker and is CI/CD optimized. The development environment uses docker-compose
to start dependent services like mongo.
A few things to note in the project:
http://localhost:3000/dev/api-docs
curl
$ bash <(curl -s https://raw.githubusercontent.com/sidhantpanda/public/master/scripts/generate-express-ts-app.sh)
$ git clone git@github.com:sidhantpanda/docker-express-typescript-boilerplate.git your-app-name
$ cd your-app-name
$ npm i
Starting the dev server also starts MongoDB as a service in a docker container using the compose script at docker-compose.dev.yml
.
$ npm run dev
Running the above commands results in
http://localhost:3000
http://localhost:3000/dev/api-docs
mongodb://localhost:27017
$ docker-compose up
$ docker build -t api-server .
$ docker run -t -i -p 3000:3000 api-server
$ npm run build && npm run start
To edit environment variables, create a file with name .env
and copy the contents from .env.default
to start with.
| Var Name | Type | Default | Description |
|---|---|---|---|
| NODE_ENV | string | development
|API runtime environment. eg: staging
|
| PORT | number | 3000
| Port to run the API server on |
| MONGO_URL | string | mongodb://localhost:27017/books
| URL for MongoDB |
+-- scripts
| +-- dev.sh
+-- src
| +-- controllers
| | +-- book
| | | +-- add.ts
| | | +-- all.ts
| | | +-- index.ts
| | | +-- search.ts
| +-- middleware
| | +-- handle-error-middleware.ts
| +-- models
| | +-- Book.ts
| +-- app.ts
| +-- mongo-connection.ts
| +-- routes.ts
| +-- server.ts
+-- .env
+-- .env.default
+-- .eslintrc.js
+-- .gitignore
+-- .prettierrc.js
+-- docker-compose.dev.yml
+-- docker-compose.yml
+-- Dockerfile
+-- nodemon.json
+-- openapi.json
+-- package-lock.json
+-- package.json
+-- README.md
+-- tsconfig.json