NOTE: Starting April 18,2022 , the repo has ditched most promises for observables. You can check the latest promised version code at commit
More on why observables are better than promises can be read here
- Prerequisites
- Getting Started
- Database
- Features Covered
- Available Scripts
- Setup
- File Structure
- Authentication
- Deployment
NodeJS https://nodejs.org/en/
Typescript https://www.typescriptlang.org/
PostgresQL https://www.postgresql.org/
Redis https://redis.io/
RabbitMQ https://www.rabbitmq.com
# 1. Clone the repository or click on "Use this template" button.
npx degit rubiin/ultimate-nest my-nest-app
# 2. Enter your newly-cloned folder.
cd ultimate-nest
# 3. Create Environment variables file.
cp env/.env.example env/.env.dev
# 4. Install dependencies (preferred: pnpm)
npm install --legacy-peer-deps
pnpm install --shamefully-hoist=true
yarn install
The example codebase uses MikroORM with a Postgres database. Why Mikroorm
? It is a modern ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. It is fully compatible with TypeScript and provides additional features like support for enums, custom types, MongoDB, transactions, caching, migrations, change tracking, advanced queries, lazy/eager relations and much more.
Copy sample env file and adjust the connection settings and other settings(jwt,redis,mail,etc) respectively on sample env file
Note
: Env files are kept in env folder. The config validation allows 4 environment ['dev', 'prod', 'test','stage']. The env file name
should be of format .env.[environment] Ex. (.env.dev). The env to use should be provided while running any script as NODE_ENV=dev yarn dev
Start local Postgres server and run NODE_ENV=dev make migrate
to apply migrations
Now you can start the application witt NODE_ENV=dev yarn start
.
Note: If you are using windows, SET NODE_ENV=dev yarn start
or install cross-env and use cross-env NODE_ENV=dev yarn start
- π I18n - Internationalization
- 𧡠Stats - swagger stats for common server metrics
- 𧡠Poolifier - threads for cpu extensive tasks
- π¬ Twilio - sms support
- π± NestJS β latest version
- π TypeScript - Type checking
- βοΈ Dotenv - Supports environment variables
- π Authentication - JWT, RSA256, oauth
- π¬ Authorization - RBAC with casl
- πͺ MikroORM - Database ORM
- πͺ PostgreSQL - Open-Source Relational Database
- π§ Configuration - Single config for all
- π Swagger - API Documentation
- π³ Docker Compose - Container Orchestration
- π Helmet - secure HTTP headers
- π΄ Insomnia - Insomnia config for endpoints
- π ESLint β Pluggable JavaScript linter
- π Prettier - Opinionated Code Formatter
yarn start
- Start applicationyarn start:dev
- Start application in watch modeyarn start:prod
- Start built applicationyarn start:hmr
- Start application with hot module replacementyarn format
- Formats all the files inside src using prettier with config provided in.prettierrc
yarn lint
- Uses eslint to lint all the files inside src with config provided in.eslintrc.cjs
yarn orm migration:create
- Uses Mikroorm to create a migration fileyarn orm migration:up
- This command is used to run availablexisting migration files.yarn orm migration:down
- This command is used to rollback migration.yarn orm seeder:run
- This command is used to run existing seeders insrc/common/database
.
All the scripts require NODE_ENV
flag
Additionally, you can also see the scripts in justfile
which is a cross platform task runner. You can use it by installing just and then running `just <script>
- First if you don't want to use any libs from like redis, mailer etc. replace them from the app.module.tasks
- You will also need to remove the config from
validate.config.ts
from lineload: []
- Also remove the unwanted config variables from the env file
- You will also need to remove the config from
- Make sure you create a env file under
env
directory with name like.env.something
.The portion after .env is theNODE_ENV
value which will be required while running the app - Also make sure you have ssl files inside
src/resources/ssl
if you tend to use ssl. Replace the sample files with your ssl files but keep the name same. Additionally
Migrations are used to update the database schema. The migration files are stored in migrations
directory.
NODE_ENV=dev yarn orm migration:up # applies migration for dev env
Seeding is used to insert data into the database. The seeding files are stored in common/database/seeders
directory.
USER_PASSWORD=Test@1234 NODE_ENV=dev yarn orm seeder:run # seeds data for dev env with all user password set as Test@1234
NODE_ENV=[env name] yarn start
- Test api by browsing to
http://localhost:[port]/v1/user
- View automatically generated swagger api docs by browsing to
http://localhost:[port]/docs
- View automatically generated swagger stats dashboard by browsing to
http://localhost:[port]/stats
. The username and password is the values set in the env file underSWAGGER_USERNAME
andSWAGGER_PASS
respectively
ultimate-nest
βββ env * Contains all configuration files
β βββ .env.example * Sample configuration file.
β βββ .env.dev * Configuration file for development environment.
β βββ .env.prod * Configuration file for production environment.
β βββ .env.test * Configuration file for test environment.
βββ coverage * Coverage reports after running `yarn test:cov` command.
βββ dist * Optimized code for production after `yarn build` is run.
βββ src
βββ modules * Folder where specific modules all files are stored
βββ <module>
β βββ dto * Data Transfer Objects.
β βββ <module>.controller.ts * Controller file.
β βββ <module>.module.ts * root module file for module.
β βββ <module>.service.ts * Service file for <module>.
β βββ <module>.service.spec.ts * Test file for service.
β βββ <module>.repository.ts * Repository file for <module>.
β βββ <module>.repository.spec.ts * Test file for repository.
β βββ common * Common helpers function, dto, entity,guards, custom validators,types, exception, decorators etc.
β βββ __mocks__ * Fixtures for unit tests.
β βββ libs * Resusable pre configured libraries
β βββ resources * Contains all static resources like ssl, i18n,email templates etc.
β βββ app.module.ts * Root module of the application.
β βββ main.ts * The entry file of the application which uses the core function NestFactory to create a Nest application instance.
βββ test * End to end test files for the application.
This applications uses JSON Web Token (JWT) to handle authentication. The token is passed with each request using the Authorization
header with Token
scheme. The JWT authentication middleware handles the validation and authentication of the token.
You need to have docker
and docker-compose
(not the compose plugin) installed. Also since we are using makefiles
for deployment, you need to have make
installed.
ENV=dev sh ./scripts/deploy.sh # deploys dev environment (.env.dev used)
ENV=prod sh ./scripts/deploy.sh # deploys prod environment (.env.prod used)
The password for redis
and rabbitmq
is Test@1234
can be changed in the make file under deploy
script
More docs found at docs
folder
Also if you are into NestJS ecosystem you may be interested in one of my other libs:
Platform config manager for nestjs. It supports multiple config files and environment variables.
This is a minio module for Nest.
This is a cloudinary module for Nest.
A Module for Utilizing Pg-promise with NestJS
Made with β€οΈ with opensource.