https://github.com/librity/nc_nestjs
Nomad Coders - NestJS API - A movies API made with NestJS.
https://github.com/librity/nc_nestjs
backend nestjs nomad-coders
Last synced: 3 months ago
JSON representation
Nomad Coders - NestJS API - A movies API made with NestJS.
- Host: GitHub
- URL: https://github.com/librity/nc_nestjs
- Owner: librity
- Created: 2021-04-24T02:09:27.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-25T12:02:19.000Z (about 3 years ago)
- Last Synced: 2025-01-08T07:38:15.324Z (5 months ago)
- Topics: backend, nestjs, nomad-coders
- Language: TypeScript
- Homepage:
- Size: 216 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456
[circleci-url]: https://circleci.com/gh/nestjs/nest
A progressive Node.js framework for building efficient and scalable server-side applications.
## Table of Contents
- [About](#about)
- [Endpoints](#endpoints)
- [Installation](#installation)
- [Running the app](#running)
- [Tests](#tests)
- [Nest commands](#commands)
- [Support](#support)
- [License](#license)
- [Libs](#libs)
- [Docs](#docs)
- [Resources](#resources)A movies API made with NestJS.
- [Take the course too!](https://nomadcoders.co/nestjs-fundamentals/lobby)
- [Certificate of Completion](https://nomadcoders.co/certs/faf0e59c-5462-4d9a-90c9-e154a75528eb)`MoviesController`
- `GET` http://localhost:3000/movies
- `GET` http://localhost:3000/movies?year=year
- `GET` http://localhost:3000/movies/:id
- `POST` http://localhost:3000/movies
- `PATCH` http://localhost:3000/movies/:id
- `DELETE` http://localhost:3000/movies/:id```bash
$ npm install
``````bash
# development
$ npm run start# watch mode
$ npm run start:dev# production mode
$ npm run start:prod
``````bash
# unit tests
$ npm run test# e2e tests
$ npm run test:e2e# test coverage
$ npm run test:cov
``````bash
# Get all commands
$ nest# Generate a new controller
$ nest generate controller
$ nest g co# Generate a new service
$ nest generate service
$ nest g s# Generate a new module
$ nest generate module
$ nest g mo# Lint project
$ npm run lint
```Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).
### Stay in touch
- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)Nest is [MIT licensed](LICENSE).
- https://github.com/nestjs/nest
- https://github.com/fastify/fastify
- https://github.com/typestack/class-validator
- https://github.com/typestack/class-transformer
- https://github.com/nestjs/mapped-types- https://docs.nestjs.com/
- https://www.typescriptlang.org/docs/handbook/decorators.html#introduction- https://en.wikipedia.org/wiki/Single-responsibility_principle
- https://stackoverflow.com/questions/54979729/howto-get-req-user-in-services-in-nest-js