├── .DS_Store ├── .gitignore ├── README.md ├── controllers └── productsController.js ├── index.js ├── package.json └── routes └── productsRoute.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfraio/rest_api_with_nodejs/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfraio/rest_api_with_nodejs/HEAD/README.md -------------------------------------------------------------------------------- /controllers/productsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfraio/rest_api_with_nodejs/HEAD/controllers/productsController.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfraio/rest_api_with_nodejs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfraio/rest_api_with_nodejs/HEAD/package.json -------------------------------------------------------------------------------- /routes/productsRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manfraio/rest_api_with_nodejs/HEAD/routes/productsRoute.js --------------------------------------------------------------------------------