A progressive Node.js framework for building efficient and scalable server-side applications.
API for task management application.
- Create User
- Authenticate User
- Get User by ID
- Update User
- Delete User
- Create Task
- Get Task by ID
- Fetch Tasks with Pagination, Filtering by Status, and Search
- Update Task
- Update Task Status
- Delete Task
- Check Database Connection
- JWT Authentication
- Rate Limiting
$ pnpm installcp .env.example .env$ docker compose up -d$ pnpm run db:generate# development
$ pnpm run db:migrate
# production
$ pnpm run db:deploy$ pnpm run db:seed# development
$ pnpm run start
# watch mode
$ pnpm run start:dev
# production mode
$ pnpm run start:prod# unit tests
$ pnpm run test
# e2e tests
$ pnpm run test:e2e
# test coverage
$ pnpm run test:cov