├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json └── src ├── book.js ├── handler.js ├── response-template.js ├── routes.js ├── server.js └── storage.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/package.json -------------------------------------------------------------------------------- /src/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/src/book.js -------------------------------------------------------------------------------- /src/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/src/handler.js -------------------------------------------------------------------------------- /src/response-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/src/response-template.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/src/server.js -------------------------------------------------------------------------------- /src/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GregBastian/dicoding-backend-pemula-submission/HEAD/src/storage.js --------------------------------------------------------------------------------