- Building Serverless Web Applications
- Diego Zanon
- 330字
- 2021-07-15 17:31:25
Static websites
Let's see the following few examples of static websites:
- Company website
- Portfolio
- Blog
- Online documentation
Static hosting is the simplest and oldest kind of serverless hosting. A static website, by definition, doesn't require server-side logic. You just need to map your site URLs to HTML files. In this book, we are going to use Amazon S3 to distribute HTML, CSS, JavaScript, and image files. Using Amazon Route 53, you give AWS the rights to route all domain requests to an S3 bucket that acts like a simple and cheap filesystem.
Hosting static files on a storage system is by far the best solution. It's cheap, fast, scalable, and highly available. There is no drawback. There is no function with cold start, no debugging, no uncertainties, and changing vendors is an easy task.
If you are thinking of using WordPress to build a static site, please reconsider. You would need to spin up a server to launch a web server and a database that stores data. You start paying a few dollars per month to host a basic site and that cost greatly increases with your audience. For availability, you would add another machine and a load balance, and the billing would cost at least dozens of dollars per month. Also, as WordPress is so largely used, it's a big target for hackers and you will end up worrying about periodic security patches for WordPress and its plugins.
So, how should you build a static site with a serverless approach? Nowadays, there are dozens of tools. I personally recommend Jekyll. You can host on GitHub pages for free, use Disqus to handle blog comments, and easily find many other plugins and templates. For my personal blog, I prefer to use Amazon because of its reliability and I pay just a few cents per month. If you want, you can also add CloudFront, which is a Content Delivery Network (CDN), to reduce latency by approximating users to your site files.
- JavaScript修煉之道
- Oracle從新手到高手
- 摩登創客:與智能手機和平板電腦共舞
- Python網絡爬蟲從入門到實踐(第2版)
- Instant Nancy Web Development
- Serverless computing in Azure with .NET
- Oracle GoldenGate 12c Implementer's Guide
- Python從入門到精通
- C語言程序設計與應用(第2版)
- Python自然語言理解:自然語言理解系統開發與應用實戰
- Node.js 6.x Blueprints
- SFML Game Development
- 軟件設計模式(Java版)
- 零基礎學Java(第5版)
- MySQL數據庫教程(視頻指導版)