Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/federicobonel/express-task-api
https://github.com/federicobonel/express-task-api
Last synced: about 18 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/federicobonel/express-task-api
- Owner: FedericoBonel
- Created: 2022-08-24T08:03:59.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-08-24T08:16:11.000Z (over 2 years ago)
- Last Synced: 2024-03-04T06:38:54.319Z (11 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Express task api
Simple yet strong api developed in node.js that allows you to persist your own task/todo list to a mongo database.
## How do I use it?
A basic way to get your own instance of this app running is by:
First clone/fork this repo by typing the following in your shell/cmd:
```
git clone "repo-uri"
```Second install the app using:
```
cd ./express-task-api
npm install
```Lastly run the app.js script by replacing the placeholders with your own information:
```
PORT=5000 MONGODB_URI="your-own-mongodb-database" node app.js
```And that's it have fun!
If you want to check out a client that consumes this api using React and Redux you can [click here!](https://github.com/FedericoBonel/redux-todo)