Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/joncursi/nest-base

🐤 Base setup for a Nest.js back-end.
https://github.com/joncursi/nest-base

apollo-server graphql nestjs typescript

Last synced: about 2 months ago
JSON representation

🐤 Base setup for a Nest.js back-end.

Awesome Lists containing this project

README

        

# Nest Base

🐤 Base setup for a [Nest.js](https://nestjs.com/) back-end.

[![CircleCI](https://circleci.com/gh/joncursi/nest-base.svg?style=shield)](https://circleci.com/gh/joncursi/nest-base)

## Getting Started

1. Install node modules:

```shell
npm install
```

2. Start the server in dev mode:

```shell
npm run dev
```

3. Start the server in production mode:

```shell
npm run build
npm start
```

## npm Scripts

There are lots of npm scripts at your disposal during local development.
Here are some of the more important ones:

| Script | Description |
|:------------------ |:------------------------------------------------------ |
| npm run dev | Starts the local dev server. |
| npm run build | Builds the production bundle. |
| npm start | Starts the production server. |
| npm test | Run all tests. |