Nest framework TypeScript starter repository.
$ pnpm install# 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- [Security] CSRF
- [Security] Device Fingerprinting
- How it Works: Collect device-specific information (e.g., device ID, OS version) and include it in API requests. You can then validate this information on the server-side to ensure the request is coming from a legitimate device.
- Benefits: Adds an extra layer of protection against unauthorized access.
- Considerations: Be mindful of privacy concerns and obtain user consent if necessary.