/nestjs-rot13

A simple API for encrypting and decrypting text using the ROT13 cipher, and build with Nest.js.

Primary LanguageTypeScript

ROT13 API

A simple API for encrypting and decrypting text using the ROT13 cipher, and build with Nest.js.

Languages and Tools

typescript nestjs firebase

Get Started

Generate the .env file, and add your database credentials.

$ cp .env.example .env

Install the dependencies with PnPm

$ pnpm install

Running the app

# development
$ pnpm start
# watch mode
$ pnpm start:dev
# production mode
$ pnpm start:prod

Testing the app

# unit tests
$ pnpm test
# e2e tests
$ pnpm test:e2e
# test coverage
$ pnpm test:cov