Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kashansiddiqui/nest-js-boiler-plate
Nest Js Boilerplate with JWT authentication, CRUD functions and payment gateways.
https://github.com/kashansiddiqui/nest-js-boiler-plate
authentication boiler-plate crud-functions kraken mongodb mongodb-database nest nestjs nodemailer nodemailer-smtp-transport payments-gateways paypal paypal-rest-api signup-routes stripe stripe-api
Last synced: about 1 month ago
JSON representation
Nest Js Boilerplate with JWT authentication, CRUD functions and payment gateways.
- Host: GitHub
- URL: https://github.com/kashansiddiqui/nest-js-boiler-plate
- Owner: KashanSiddiqui
- Created: 2020-01-21T06:17:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:14:02.000Z (almost 2 years ago)
- Last Synced: 2024-09-23T01:31:51.251Z (about 2 months ago)
- Topics: authentication, boiler-plate, crud-functions, kraken, mongodb, mongodb-database, nest, nestjs, nodemailer, nodemailer-smtp-transport, payments-gateways, paypal, paypal-rest-api, signup-routes, stripe, stripe-api
- Language: TypeScript
- Homepage:
- Size: 168 KB
- Stars: 27
- Watchers: 1
- Forks: 7
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[travis-image]: https://api.travis-ci.org/nestjs/nest.svg?branch=master
[travis-url]: https://travis-ci.org/nestjs/nest
[linux-image]: https://img.shields.io/travis/nestjs/nest/master.svg?label=linux
[linux-url]: https://travis-ci.org/nestjs/nest
A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.
## Description
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
Node js boiler plate with login and signup routes and payments gateways. Mongoose database is used for this boiler plate.* Functions/Modules
- Login/Signup Route and storing data in moongose
- CRUD function route with monodb
- Send Email Function using nodemailer
- Stripe Payment Method
- Paypal Payment Method
- Currency conversion (By Rapid Api)
- Crypto to fiat conversion (Kraken)
Few keys that needed to be updated. Create config.json and .env file and update things that are mentioned below* Updates Required
- Update JWT secret key in .env file for encryption and generation of token
- Update mongoose private key in config.json file
- Update Stripe secret key in .env file
- Update email and password for sender email
- Update paypal secrets keys in paypal services file
- Update Rapid api and kraken keys in kraken services file## Installation
```bash
$ npm install
```## Running the app
```bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
```## Test
```bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
```## License
Nest is [MIT licensed](LICENSE).