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: 17 days 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 (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-22T17:26:31.000Z (4 months ago)
- Last Synced: 2024-12-25T19:44:09.416Z (21 days ago)
- Topics: mongodb, nestjs
- Language: TypeScript
- Homepage: https://crud-nestjs-manthanank.vercel.app
- Size: 395 KB
- Stars: 1
- 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.