├── .gitignore ├── .vscode └── launch.json ├── README.md ├── app.js ├── art.txt ├── bin └── www ├── controllers └── todos.controller.js ├── models └── todo.model.js ├── package.json ├── public └── stylesheets │ └── style.css ├── routes ├── api.route.js ├── api │ └── todos.route.js ├── index.route.js └── users.route.js ├── services └── todos.service.js └── views ├── error.ejs └── index.ejs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/app.js -------------------------------------------------------------------------------- /art.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/art.txt -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/bin/www -------------------------------------------------------------------------------- /controllers/todos.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/controllers/todos.controller.js -------------------------------------------------------------------------------- /models/todo.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/models/todo.model.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/package.json -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/api.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/routes/api.route.js -------------------------------------------------------------------------------- /routes/api/todos.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/routes/api/todos.route.js -------------------------------------------------------------------------------- /routes/index.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/routes/index.route.js -------------------------------------------------------------------------------- /routes/users.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/routes/users.route.js -------------------------------------------------------------------------------- /services/todos.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/services/todos.service.js -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomanHasan/todo-api/HEAD/views/index.ejs --------------------------------------------------------------------------------