Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugocruzlfc/nest-fundamentals-course-graphql-schema-first
Nest fundamentals course. GraphQL schema-first approach.
https://github.com/hugocruzlfc/nest-fundamentals-course-graphql-schema-first
Last synced: about 12 hours ago
JSON representation
Nest fundamentals course. GraphQL schema-first approach.
- Host: GitHub
- URL: https://github.com/hugocruzlfc/nest-fundamentals-course-graphql-schema-first
- Owner: hugocruzlfc
- Created: 2024-02-28T10:06:49.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-29T17:55:42.000Z (11 months ago)
- Last Synced: 2024-03-01T13:38:23.876Z (11 months ago)
- Language: TypeScript
- Size: 337 KB
- Stars: 0
- Watchers: 1
- 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.
## Description
## 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
```## Adding dependencies
```bash
npm i @nestjs/graphql graphql @nestjs/apollo apollo-server-express ts-morph
npm install @nestjs/typeorm typeorm pg
npm i class-validator class-transformer
```## Generate types
```bash
npx ts-node src/generate-types
```