├── .gitignore ├── README.md ├── package.json └── src ├── docs ├── basicInfo.js ├── components.js ├── index.js ├── servers.js ├── tags.js └── todos │ ├── create-todo.js │ ├── delete-todo.js │ ├── get-todo.js │ ├── get-todos.js │ ├── index.js │ └── update-todo.js ├── index.js └── routes └── todos.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | db.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/package.json -------------------------------------------------------------------------------- /src/docs/basicInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/basicInfo.js -------------------------------------------------------------------------------- /src/docs/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/components.js -------------------------------------------------------------------------------- /src/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/index.js -------------------------------------------------------------------------------- /src/docs/servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/servers.js -------------------------------------------------------------------------------- /src/docs/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/tags.js -------------------------------------------------------------------------------- /src/docs/todos/create-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/todos/create-todo.js -------------------------------------------------------------------------------- /src/docs/todos/delete-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/todos/delete-todo.js -------------------------------------------------------------------------------- /src/docs/todos/get-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/todos/get-todo.js -------------------------------------------------------------------------------- /src/docs/todos/get-todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/todos/get-todos.js -------------------------------------------------------------------------------- /src/docs/todos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/todos/index.js -------------------------------------------------------------------------------- /src/docs/todos/update-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/docs/todos/update-todo.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/routes/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwangiKibui/node.js-rest-api-documentation/HEAD/src/routes/todos.js --------------------------------------------------------------------------------