https://github.com/geozi/nodejs-typescript-task-manager
Contains the backend implementation of a Task Manager API in Typescript.
https://github.com/geozi/nodejs-typescript-task-manager
expressjs jwt-authorization layered-architecture mocha-tests mongoosejs nodejs restful-api sinonjs typedoc
Last synced: about 2 months ago
JSON representation
Contains the backend implementation of a Task Manager API in Typescript.
- Host: GitHub
- URL: https://github.com/geozi/nodejs-typescript-task-manager
- Owner: geozi
- Created: 2025-01-17T09:13:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-21T15:20:33.000Z (over 1 year ago)
- Last Synced: 2025-10-19T10:06:14.681Z (8 months ago)
- Topics: expressjs, jwt-authorization, layered-architecture, mocha-tests, mongoosejs, nodejs, restful-api, sinonjs, typedoc
- Language: TypeScript
- Homepage:
- Size: 424 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nodejs-typescript-task-manager

## About the project
The project contains the backend implementation of a Task Manager API in Typescript. It exposes APIs for task and user profile management:
- User registration,
- User login,
- User profile update,
- Task creation,
- Task update,
- Task deletion,
- Task fetching by username,
- Task fetching by status,
- Task fetching by subject.
## Prerequisites
- Nodejs (v20.11.1)[^1],
- MongoDB.
## Testing
A thorough presentation of testing during development can be found in the [QA Test plan](QA-Test-plan.md).
## Security
- **Authentication**: Single factor, local authentication.
- **Authorization**: JSON Web Token (JWT).
## Differences with previous Nodejs projects
The Task Manager API project :
- uses Typescript for development and TypeDoc for documentation,
- implements a layered architecture approach,
- uses a combination of Node's build-in assert library, Sinon, Chai, and Mocha for unit and integration testing,
- uses class syntax to create custom error classes.
##
[^1]: According to the [Release Schedule](https://nodejs.org/en/about/previous-releases), Node.js v20 will enter its maintenance phase in the last quarter of 2024. During that period, it is recommended that the project should migrate to the latest active LTS version.