Ajay Kotnala
Ajay Kotnala

Reputation: 1045

AWS simple Crud operation

I am new to AWS. for initial understanding i need.. full flow from Angularjs(which i know) -> api gateway(i know) -> lambda(node.js) -> dynamodb.

i am looking for simple CRUD operation samples. i know how to write code in Angular, APIGateway but struggling out with Lambda(Node.js) for writing code that can perform CRUD operation on dynamodb Table. can any one please provide link or sample project which contain sample code in node.js. (i have googled it a lot but couldnt find out straight away samples) i am also following aws document site. but i feel its slightly complex or i am stupid :) )

Thanks in advance.

Upvotes: 1

Views: 1148

Answers (1)

Ryan Fitzgerald
Ryan Fitzgerald

Reputation: 829

I have an example project which shows how to use vogels (a DynamoDB data mapper for nodejs) with lambda. Currently, the project just has a single function which writes data to a DynamoDB table, but would be easy to add more CRUD functions.

Upvotes: 1

Related Questions