Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manthanank/crud-nestjs
Nestjs Crud App
https://github.com/manthanank/crud-nestjs
mongodb nestjs
Last synced: about 6 hours ago
JSON representation
Nestjs Crud App
- Host: GitHub
- URL: https://github.com/manthanank/crud-nestjs
- Owner: manthanank
- License: mit
- Created: 2023-12-12T17:51:24.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-04-24T07:07:26.000Z (7 months ago)
- Last Synced: 2024-04-24T13:41:00.076Z (7 months ago)
- Topics: mongodb, nestjs
- Language: TypeScript
- Homepage:
- Size: 291 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CRUD NestJs
This is a simple CRUD (Create, Read, Update, Delete) application built using NestJS.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/manthanank/crud-nestjs.git
```2. Install dependencies:
```bash
cd crud-nestjs
npm install
```## Usage
### Development Server
To start the development server with hot reloading, run:
```bash
npm run start:dev
```The server will be running at `http://localhost:3000` by default.
### Build
To build the project, run:
```bash
npm run build
```This will generate a `dist` folder containing the compiled code.
### Testing
To run tests, use:
```bash
npm test
```For more testing options, check the `package.json` file.
## Configuration
Configuration for this project can be found in the `config` folder.
## License
This project is licensed under the [MIT Licensed](LICENSE).
Feel free to customize this README to better suit your project's specific features and requirements.