https://github.com/carlos460/task-it
REST Api using express.js
https://github.com/carlos460/task-it
ejs-templating express-js
Last synced: 3 months ago
JSON representation
REST Api using express.js
- Host: GitHub
- URL: https://github.com/carlos460/task-it
- Owner: Carlos460
- License: mit
- Created: 2020-05-10T23:44:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T09:24:16.000Z (over 3 years ago)
- Last Synced: 2025-03-09T12:55:25.965Z (about 1 year ago)
- Topics: ejs-templating, express-js
- Language: JavaScript
- Homepage:
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Task-it
Task-it a rest api with full crud functionality
# Installation
Make sure you have Node and NPM installed. You will also need [MangoDB](https://www.mongodb.com/) database to hook up.
1. clone repository
```bash
git clone https://github.com/Carlos460/task-it.git
```
2. Install Dependencies
```bash
npm install
```
3. Make and connect [MangoDB](https://www.mongodb.com/) database.
```javascript
mongoose.connect(
,
// {Mongoose Config Stuff},
// Some JS Code
);
```
note: If you want to upload your own changes to a repository, remember to use a .env file with the [dotenv](https://www.npmjs.com/package/dotenv) dependency to keep your key safe!
4. Run script to start server with nodemon!
```git
npm start
```