Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rolling-scopes-school/nodejs-course-template
https://github.com/rolling-scopes-school/nodejs-course-template
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rolling-scopes-school/nodejs-course-template
- Owner: rolling-scopes-school
- Created: 2019-12-25T21:35:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-15T09:32:41.000Z (5 months ago)
- Last Synced: 2024-06-23T10:38:09.335Z (5 months ago)
- Language: TypeScript
- Size: 974 KB
- Stars: 47
- Watchers: 12
- Forks: 151
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- popular-dependents-lists - rolling-scopes-school/nodejs-course-template - 🌟 45 (Nest / rolling-scopes-school/nodejs-course-template)
README
# Home Library Service
## Prerequisites
- Git - [Download & Install Git](https://git-scm.com/downloads).
- Node.js - [Download & Install Node.js](https://nodejs.org/en/download/) and the npm package manager.## Downloading
```
git clone {repository URL}
```## Installing NPM modules
```
npm install
```## Running application
```
npm start
```After starting the app on port (4000 as default) you can open
in your browser OpenAPI documentation by typing http://localhost:4000/doc/.
For more information about OpenAPI/Swagger please visit https://swagger.io/.## Testing
After application running open new terminal and enter:
To run all tests without authorization
```
npm run test
```To run only one of all test suites
```
npm run test --
```To run all test with authorization
```
npm run test:auth
```To run only specific test suite with authorization
```
npm run test:auth --
```### Auto-fix and format
```
npm run lint
``````
npm run format
```### Debugging in VSCode
Press F5 to debug.
For more information, visit: https://code.visualstudio.com/docs/editor/debugging