An open API service indexing awesome lists of open source software.

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

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
```