├── .gitignore ├── README.md ├── api ├── controllers │ └── todoListController.js ├── models │ └── todoListModel.js └── routes │ └── todoListRoutes.js ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/README.md -------------------------------------------------------------------------------- /api/controllers/todoListController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/api/controllers/todoListController.js -------------------------------------------------------------------------------- /api/models/todoListModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/api/models/todoListModel.js -------------------------------------------------------------------------------- /api/routes/todoListRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/api/routes/todoListRoutes.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/generalgmt/RESTfulAPITutorial/HEAD/server.js --------------------------------------------------------------------------------