Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        


Nest Logo

[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
```