├── .eslintrc.json ├── .gitignore ├── Bookshelf API Test ├── Bookshelf API Test.postman_collection.json └── Bookshelf API Test.postman_environment.json ├── README.md ├── package.json └── src ├── books.js ├── handler.js ├── routes.js └── server.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Bookshelf API Test/Bookshelf API Test.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/Bookshelf API Test/Bookshelf API Test.postman_collection.json -------------------------------------------------------------------------------- /Bookshelf API Test/Bookshelf API Test.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/Bookshelf API Test/Bookshelf API Test.postman_environment.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/package.json -------------------------------------------------------------------------------- /src/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/src/books.js -------------------------------------------------------------------------------- /src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/src/handler.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AbdSalehh/Bookshelf-API/HEAD/src/server.js --------------------------------------------------------------------------------