Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fzl-22/digistar-day4-database
Digistar Day 4: Database with MongoDB
https://github.com/fzl-22/digistar-day4-database
Last synced: about 2 months ago
JSON representation
Digistar Day 4: Database with MongoDB
- Host: GitHub
- URL: https://github.com/fzl-22/digistar-day4-database
- Owner: fzl-22
- Created: 2024-09-04T15:23:44.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-06T08:27:32.000Z (4 months ago)
- Last Synced: 2024-09-06T22:07:59.459Z (4 months ago)
- Language: TypeScript
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Assignment Day 4: Hacker Back End [Digistar Class 2024]
| Name | Class |
| ------------------- | ----------------- |
| Ahmad Mu'min Faisal | Hacker Back End 9 |Recording Link: [https://bit.ly/digistar-2024-be4](https://bit.ly/digistar-2024-be4).
## How to run the project
> This project uses TypeScript. So to run the project, it needs to be compiled to JavaScript. The `start` script is already includes the compilation script.
First, install the dependencies.
```bash
npm install
```Then, run the project with start script to include the `.env`.
```bash
# this script also runs `npm run build` to compile the project to JavaScript.
npm run start
```If you want to use `ts-node-dev` instead, run this command.
```bash
npm run dev
```