Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/joncursi/nest-base
- Owner: joncursi
- License: mit
- Created: 2020-02-03T20:54:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T23:22:51.000Z (about 2 years ago)
- Last Synced: 2023-07-25T22:23:30.143Z (over 1 year ago)
- Topics: apollo-server, graphql, nestjs, typescript
- Language: TypeScript
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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. |