Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jennndol/todo-fancy
Todo-Fancy: Your personal task companion. This simple Vue, Express, and MongoDB app streamlines personal task management, making it easy to organize and prioritize your to-dos effortlessly.
https://github.com/jennndol/todo-fancy
adorable express facebook-api jwt mongoose
Last synced: 23 days ago
JSON representation
Todo-Fancy: Your personal task companion. This simple Vue, Express, and MongoDB app streamlines personal task management, making it easy to organize and prioritize your to-dos effortlessly.
- Host: GitHub
- URL: https://github.com/jennndol/todo-fancy
- Owner: jennndol
- Created: 2018-02-10T09:58:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-10T14:43:42.000Z (almost 7 years ago)
- Last Synced: 2024-11-11T10:49:43.236Z (3 months ago)
- Topics: adorable, express, facebook-api, jwt, mongoose
- Language: Vue
- Homepage:
- Size: 139 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo-fancy
An amazing todo list application for you, take your todo list wherever you go## Info & Requirements
### Server
The server is built using express, here's the requirements for running this awesome site"dependencies": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^5.0.0",
"express": "~4.15.5",
"fb": "^2.0.0",
"jade": "~1.11.0",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.4",
"morgan": "~1.9.0",
"serve-favicon": "~2.4.5"
}## Files and Folders
├── client
│ └── index.html
├── README.md
└── server
├── app.js
├── bin
│ └── www
├── controllers
│ ├── TodoController.js
│ └── UserController.js
├── helpers
│ └── decode.js
├── middlewares
│ └── auth.js
├── models
│ ├── Todo.js
│ └── User.js
├── package.json
├── package-lock.json
├── routes
│ ├── index.js
│ ├── todo.js
│ └── user.js
└── seeds
├── todo-seed.js
└── user-seed.js## How To Run It
Running the server
cd server
npm i
npm run dev