Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fazt/nodejs-mongodb-tasks-api

A tasks REST API crud using Nodejs, Mongodb and Modern Javascript with Babeljs
https://github.com/fazt/nodejs-mongodb-tasks-api

babeljs mongodb nodejs restapi

Last synced: about 1 month ago
JSON representation

A tasks REST API crud using Nodejs, Mongodb and Modern Javascript with Babeljs

Awesome Lists containing this project

README

        

# Tasks NodeMongoose API
[![Discord](https://fazt.dev/social/discord )

This project is a REST API for managmenent Tasks. Develped using:

* Nodejs
* Express
* Mongodb
* Mongoose

The idea is to use this example in frontend applications.

# Endpoints

```
GET api/tasks get all Tasks
GET api/tasks/:id get Task by id
POST api/tasks add new Task
PUT api/tasks/:id update Task by id
DELETE api/tutorials/:id remove Task by id
DELETE api/tutorials remove all Tasks
GET api/tutorials/published find all published Tasks
GET api/tutorials?title=[kw] find all Tasks which title contains 'kw'
```

# Run the Project

In development

```sh
npm run dev
```

# More Info
[faztweb.com](https://faztweb.com)