Posts

How to use AWS DynamoDB as Free Database in Javascript Serverless Webpages

Image
 image AWS DynamoDB Demo: Serverless WebPage DynamoDB Demo hosted on CloudFront AWS Service Time Period Free Tier Limits / Pricing Amazon DynamoDB Pricing used as database Always Free up to 25 RCU/WCU After 25 units: $0.00065 per WCU $0.00013 per RCU Provisioned Mode: you specify how many RCU/WCU you need Free 25 RCU and 25 WCU are free - which means 25 read and write requests per second are free forever! Free 25 GB of data storage for tables 1 RCU = 1 Read / second (4KB) 1 WCU = 1 Write / second (1KB) Again 1 RCU can do 1 strongly consistent read OR 2 eventually consistent Reads. AWS CloudFront and AWS S3 explained in our previous post [ optional - used for hosting and CDN]   AWS CloudFront and S3 Configuration and Free Pricing   Steps to Configure Amazon DynamoDB User Key: AWS Developer Guide to set up DynamoDB Go to AWS IAM Console Click on Users > Add User Provide UserName and select Access Key option > Next In Permissions Page > select Attach Policy directl...

Host a Free Static Website with AWS CloudFront and S3

Image
Free Hosting with AWS CloudFront and S3   AWS CloudFront Website Demo: AWS CloudFront and S3 Website       AWS Services in this Stack Time Period Free Tier Limits / Pricing Amazon CloudFront used as content delivery network (CDN) Each month Always Free Free 1 TB of data transfer out (approx 1million pageviews of 1MB pages) Free 10,000,000 HTTP or HTTPS Requests Amazon S3 used for hosting - web pages (file) storage on cloud cost will be negligible for a small project since we will be caching pages with CloudFront cache to minimize S3 read requests Each month 12 Months Free Free 5 GB of Standard Storage Free 20,000 Get Requests Free 2,000 Put Requests After 12 months $0.0004 per 1000 GET Requests $0.023 per GB storage cost Amazon Route 53 used as Domain Name Service (DNS) optional - for custom domain Paid Domain Name Registration (~ $12 for 1 year) Hosted Zone ($0.5 per month) AWS Certificate Manager used to generate SSL certificate - one time Always Free Free Ste...