├── .gitignore ├── models └── product.js ├── package.json ├── readme.md ├── routes └── api.js └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /models/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthoiland/restful-api-demo/HEAD/models/product.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthoiland/restful-api-demo/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthoiland/restful-api-demo/HEAD/readme.md -------------------------------------------------------------------------------- /routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthoiland/restful-api-demo/HEAD/routes/api.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthoiland/restful-api-demo/HEAD/server.js --------------------------------------------------------------------------------