An open API service indexing awesome lists of open source software.

https://github.com/hprobotic/lambda-nodejs-sequelize

Implement nodejs, sequelize and AWS lambda
https://github.com/hprobotic/lambda-nodejs-sequelize

aws-mysql-sequelize lambda-nodejs lambda-sequelize nodejs-sequelize

Last synced: 11 months ago
JSON representation

Implement nodejs, sequelize and AWS lambda

Awesome Lists containing this project

README

          

# lambda-nodejs-sequelize
Implement nodejs, sequelize and AWS lambda

```
// GET: /api/users/2
// Response:

{
"id": 2,
"name": "John Pham",
"createdAt": "2018-03-16T07:48:00.000Z",
"updatedAt": "2018-03-16T07:48:00.000Z",
"userItems": [
{
"id": 1,
"content": "hello\n",
"complete": false,
"createdAt": "2018-03-16T08:03:04.000Z",
"updatedAt": "2018-03-16T08:03:04.000Z",
"userId": 2
},
{
"id": 2,
"content": "New item",
"complete": false,
"createdAt": "2018-03-16T08:03:14.000Z",
"updatedAt": "2018-03-16T08:03:14.000Z",
"userId": 2
},
{
"id": 3,
"content": "New item 2",
"complete": false,
"createdAt": "2018-03-16T08:03:16.000Z",
"updatedAt": "2018-03-16T08:03:16.000Z",
"userId": 2
},
{
"id": 4,
"content": "New item 3",
"complete": false,
"createdAt": "2018-03-16T08:03:20.000Z",
"updatedAt": "2018-03-16T08:03:20.000Z",
"userId": 2
}
]
}
```