Skip to content

wavezync/nestjs-starter

Repository files navigation

WaveZync NestJS Starter

Description

Nest framework TypeScript starter repository.

In this starter you may find a working application pre configured with the PostgreSQL and JWT Auth.

Please go through Nest Docs before playing with the code.

Installation

To run the application you need to have PostgreSQL installed.

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# debug mode
$ npm run start:debug

# production mode
$ npm run start:prod

Running the app with docker 🐳

With Docker you can run it easily. Now port 3000 will be open and 9229 can be connected to debugger as well.

PostgreSQL is exposed via 5432 port.

$ docker-compose up

Project Setup

The project setup follows standard NestJS conventions. Checkout NestJS docs for more.

Directory structure

Directory structure follows module based on features.

src
├── @types # type defs goes here
├── common # common stuffs
│   ├── decorators # custom decorators
│   ├── dto # common DTOs
│   ├── exceptions # exceptions
│   ├── filters # filters for app
│   └── guards # guards for app
├── config # app config
├── database # database module
│   ├── migrations # db migrations
│   └── stubs # migration/seed stubs
└── modules # modules of app
    ├── auth # auth module
    │   └── dto
    ├── health # health module
    └── user # user module
        ├── dto
        └── entities

Database and ORM

For database we have used PostgreSQL. And for ORM we have used Knex.js with ObjectionJS.

Knex is an awesome query builder which is closer to SQL. Objection also a thin wrapper around Knex.

For all database migrations please use snake_case conversion when creating tables or columns. In PostgreSQL it is natural to work with snake_case when writing queries.

Knex will automatically map your snake_case names into camelCase on application side. Dont use snake_case in JS side. Instead always use camelCase. Read more

Please change the database name in docker-compose file and .env

Api Docs

Api docs can be geneated thanks to @nestjs/swagger package. Since we are using cli plugin you can comment your Dtos with JSDocs and the documentation will be done automatically. Please follow conventions mentioned here

Environment variables

Env Variable Description example
SECRET Secret for JWT somesecret
DATABASE_URL PostgreSQL connection string postgres://admin:admin@localhost:5432/wavezync
LOGGER_LEVEL Level of logger info
LOGGER_FORMAT Format for logging pretty or json

VS Code helpers

You can find helpers by pressing CTRL + SHIFT + P in VSCode