A lightning fast overview of everything you need to know to set up a REST endpoint with full CRUD capability with AWS Lambda, DynamoDB and AWS Amplify in 2 minutes.
Dev.to embed:
A lightning fast overview of everything you need to know to set up a REST endpoint with full CRUD capability with AWS Lambda, DynamoDB and AWS Amplify in 2 minutes.
Dev.to embed:
For further actions, you may consider blocking this person and/or reporting abuse
Timeless DEV post...
Arguably the single most important piece of documentation for any open source project is the README. A good README not only informs people what the project does and who it is for but also how they use and contribute to it.
If you write a README without sufficient explanation of what your project does or how people can use it then it pretty much defeats the purpose of being open source as other developers are less likely to engage with or contribute towards it.
Ileriayo Adebiyi -
Pubudu Jayawardana -
Sebastian -
Sivamuthu Kumar -
Once suspended, swyx will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, swyx will be able to comment and publish posts again.
Once unpublished, all posts by swyx will become hidden and only accessible to themselves.
If swyx is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to swyx.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community π©βπ»π¨βπ» safe. Here is what you can do to flag swyx:
Unflagging swyx will restore default visibility to their posts.
Top comments (3)
Is Amplify your recommended way of setting up Lambdas? Iβve found the AWS and SAM CLI to be a little painful, ended up going with Serverless Framework. Seems like what youβre doing here automates so much of the configuration, which is what I get out of Serverless Framework
it's the way I know best, so yes. I'd say AWS CDK is also a really easy way, that requires just a little bit more code. Serverless is more established, but third party. honestly between Amplify, CDK, and Serverless you have no bad choices here.
Late response but thanks for the reply!