├── .gitignore ├── LICENSE ├── README.md ├── db.js ├── handler.js ├── models └── Note.js ├── package.json ├── sample.variables.env └── serverless.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/db.js -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/handler.js -------------------------------------------------------------------------------- /models/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/models/Note.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /sample.variables.env: -------------------------------------------------------------------------------- 1 | DB=mongodb://localhost:27017/test -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnanrahic/building-a-serverless-rest-api-with-nodejs/HEAD/serverless.yml --------------------------------------------------------------------------------