This repo will representative of authentication service and authorization service
[ACK NestJs][ack] is a Http NestJs v10.x boilerplate. Best uses for backend service.
You can request feature or report bug with following this link
Very limited documentation
- There have been some breaking changes between v5 and v6.
- The features will be relate with AWS / Amazon web service
- Stateless Authorization
- Must run MongoDB as a
replication set
fordatabase transactions
. - If you want to implement
Google SSO
. You must have google cloud console account, then create your own Credential to get theclientId
andclientSecret
. - If you want to implement
Apple SSO
. You must haveclientId
andsignInClientId
. - If you change the environment value of
APP_ENV
toproduction
, that will trigger.- CorsMiddleware will implement config from
src/configs/middleware.config.ts
. - Documentation will
disable
. - Global prefix will remove. Before is
/api
.
- CorsMiddleware will implement config from
- For monitoring, this project will use
sentry.io
, and only send500
orinternal server error
.
We assume that everyone who comes here is programmer with intermediate knowledge
and we also need to understand more before we begin in order to reduce the knowledge gap.
- Understand NestJs Fundamental, Main Framework. NodeJs Framework with support fully TypeScript.
- Understand Typescript Fundamental, Programming Language. It will help us to write and read the code.
- Understand ExpressJs Fundamental, NodeJs Base Framework. It will help us in understanding how the NestJs Framework works.
- Understand what and how database works, especially NoSql and MongoDB.
- Understand Repository Design Pattern or Data Access Object Design Pattern. It will help to read, and write the source code
- Understand The SOLID Principle and KISS Principle for better write the code.
- Optional. Understand Microservice Architecture, Clean Architecture, and/or Hexagonal Architecture. It can help you to understand more deep about this project.
- Optional. Understanding The Twelve Factor Apps. It can help to serve the project.
- Optional. Understanding Docker.
Describes which version.
Name | Version |
---|---|
NestJs | v10.x |
NestJs Swagger | v7.x |
NodeJs | v20.x |
Typescript | v5.x |
Mongoose | v10.x |
MongoDB | v7.x |
Yarn | v1.x |
NPM | v10.x |
Docker | v24.x |
Docker Compose | v2.x |
- Easy to maintenance
- NestJs Habit
- Component based / modular folder structure
- Stateless authentication and authorization
- Repository Design Pattern or Data Access Layer Design Pattern
- Follow Community Guide Line
- Follow The Twelve-Factor App
- Adopt SOLID and KISS principle
- Support for Microservice Architecture, Serverless Architecture, Clean Architecture, and/or Hexagonal Architecture
- NestJs 10.x 🥳
- Typescript 🚀
- Production ready 🔥
- MongoDB integrate by using mongoose 🎉
- Repository Design Pattern (Multi Repository, can mix with other orm)
- Authentication (
Access Token
,Refresh Token
,API Key
,Google SSO
,Apple SSO
) - Swagger / OpenAPI 3 included
- Authorization, Role Management.
- Support multi-language
i18n
🗣, can controllable with request headerx-custom-lang
- Request validation for all request params, query, dan body with
class-validation
- Url Versioning, default version is
1
- Server Side Pagination
- Import and export data with CSV or Excel by using
decorator
- Sentry.io for Monitoring Tools
- Support Docker installation
- Support CI/CD (Eg: Github Action)
- Husky GitHook for run linter before commit 🐶
- Linter with EsLint for Typescript
Before start, we need to install some packages and tools. The recommended version is the LTS version for every tool and package.
Make sure to check that the tools have been installed successfully.
Clone the project with git.
git clone https://github.com/andrechristikan/ack-nestjs-boilerplate.git
This project needs some dependencies. Let's go install it.
yarn install
Make your own environment file with a copy of env.example
and adjust values to suit your own environment.
cp .env.example .env
By default the options of AutoCreate
and AutoIndex
will be false
. Thats means the schema in MongoDb will not change with the latest.
So to update the schema we need to run
yarn migrate
After migrate the schema, also we need to run data seed
yarn seed
Optional
The email will automatically create email template through AWS SES if we set the value at .env
file
For migrate
yarn migrate:email
Finally, Cheers 🍻🍻 !!! you passed all steps.
Now you can run the project.
yarn start:dev
For docker installation, we need more tools to be installed.
Make your own environment file with a copy of env.example
and adjust values to suit your own environment.
cp .env.example .env
then run
docker-compose up -d
The project only provide unit testing
.
yarn test
You can check The Swagger after running this project. Url localhost:3000/docs
and don't for get to put x-api-key
on header.
api key: v8VB0yY887lMpTA2VJMV
api key secret: zeZbtGTugBTn3Qd5UXtSZBwt7gn3bg
- Super Admin
- email:
superadmin@mail.com
- password:
aaAA@123
- email:
- Admin
- email:
admin@mail.com
- password:
aaAA@123
- email:
- Member
- email:
member@mail.com
- password:
aaAA@123
- email:
- User
- email:
user@mail.com
- password:
aaAA@123
- email:
Distributed under MIT licensed.
How to contribute in this repo
- Fork the repository
- Create your branch
git checkout -b my-branch
- Commit any changes to your branch
- Push your changes to your remote branch
- Open a pull request
If your code behind commit with the original/main branch
, please update your code and resolve the conflict.