StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Product

  • Stacks
  • Tools
  • Companies
  • Feed

Company

  • About
  • Blog
  • Contact

Legal

  • Privacy Policy
  • Terms of Service

© 2025 StackShare. All rights reserved.

API StatusChangelog
Amazon CloudFront
ByAmazon CloudFrontAmazon CloudFront

Amazon CloudFront

#2in CDN
Discussions29
Followers10.8k
OverviewDiscussions29

What is Amazon CloudFront?

Amazon CloudFront can be used to deliver your entire website, including dynamic, static, streaming, and interactive content using a global network of edge locations. Requests for your content are automatically routed to the nearest edge location, so content is delivered with the best possible performance.

Amazon CloudFront is a tool in the CDN category of a tech stack.

Key Features

Fast- Using a network of edge locations around the world, Amazon CloudFront caches copies of your static content close to viewers, lowering latency when they download your objects and giving you the high, sustained data transfer rates needed to deliver large popular objects to end users at scale.Simple- A single API call lets you get started distributing content from your Amazon S3 bucket or Amazon EC2 instance or other origin server through the Amazon CloudFront network.Designed for use with other Amazon Web Services Amazon CloudFront is designed for use with other Amazon Web Services, including Amazon S3, where you can durably store the definitive versions of your static files, and Amazon EC2, where you can run your application server for dynamically generated content.Cost-Effective- Amazon CloudFront passes on the benefits of Amazon’s scale to you. You pay only for the content that you deliver through the network, without minimum commitments or up-front fees.Elastic- With Amazon CloudFront, you don’t need to worry about maintaining expensive web-server capacity to meet the demand from potential traffic spikes for your content. The service automatically responds as demand increases or decreases without any intervention from you.Reliable- Amazon CloudFront is built using Amazon’s highly reliable infrastructure. The distributed nature of edge locations used by Amazon CloudFront automatically routes end users to the closest available location as required by network conditions.Global- Amazon CloudFront uses a global network of edge locations, located near your end users in the United States, Europe, Asia, and South America.

Amazon CloudFront Pros & Cons

Pros of Amazon CloudFront

  • ✓Fast
  • ✓Cdn
  • ✓Compatible with other aws services
  • ✓Simple
  • ✓Global
  • ✓Cheap
  • ✓Cost-effective
  • ✓Reliable
  • ✓One stop solution
  • ✓Elastic

Cons of Amazon CloudFront

  • ✗UI could use some work
  • ✗Invalidations take so long

Amazon CloudFront Alternatives & Comparisons

What are some alternatives to Amazon CloudFront?

CloudFlare

CloudFlare

Cloudflare speeds up and protects millions of websites, APIs, SaaS services, and other properties connected to the Internet.

Akamai

Akamai

If you've ever shopped online, downloaded music, watched a web video or connected to work remotely, you've probably used Akamai's cloud platform. Akamai helps businesses connect the hyperconnected, empowering them to transform and reinvent their business online. We remove the complexities of technology, so you can focus on driving your business faster forward.

MaxCDN

MaxCDN

The MaxCDN Content Delivery Network efficiently delivers your site’s static file through hundreds of servers instead of slogging through a single host. This "smart route" technology distributes your content to your visitors via the city closest to them.

Incapsula

Incapsula

Through an application-aware, global content delivery network (CDN), Incapsula provides any website and web application with best-of-breed security, DDoS protection, load balancing and failover solutions.

Fastly

Fastly

Fastly's real-time content delivery network gives you total control over your content, unprecedented access to performance analytics, and the ability to instantly update content in 150 milliseconds.

KeyCDN

KeyCDN

KeyCDN offers super fast and secure content delivery for minimal loading time. In addition to the CDN, it also offers advanced image processing and many other features such as live logs and Let's Encrypt SSL.

Amazon CloudFront Integrations

Beanstalk, ExpeditedSSL, Filestack, Gulp AWS Splash, AWS Mobile Hub and 7 more are some of the popular tools that integrate with Amazon CloudFront. Here's a list of all 12 tools that integrate with Amazon CloudFront.

Beanstalk
Beanstalk
ExpeditedSSL
ExpeditedSSL
Filestack
Filestack
Gulp AWS Splash
Gulp AWS Splash
AWS Mobile Hub
AWS Mobile Hub
Mixmax
Mixmax
dawson
dawson
AWS Elemental MediaPackage
AWS Elemental MediaPackage
AWS Elemental MediaLive
AWS Elemental MediaLive
AWS Elemental MediaStore
AWS Elemental MediaStore
AWS Elemental MediaTailor
AWS Elemental MediaTailor
Honeycomb
Honeycomb

Amazon CloudFront Discussions

Discover why developers choose Amazon CloudFront. Read real-world technical decisions and stack choices from the StackShare community.

Johnny Bell
Johnny Bell

Software Engineer

Jan 27, 2019

Needs adviceonGitHubGitHubNetlifyNetlifyAmazon S3Amazon S3

When I first built my portfolio I used GitHub for the source control and deployed directly to Netlify on a push to master. This was a perfect setup, I didn't need any knowledge about @{#DevOps}|topic:null| or anything, it was all just done for me.

One of the issues I had with Netlify was I wanted to #gzip my JavaScript files, I had this setup in my #Webpack file, however Netlify didn't offer an easy way to set this.

Over the weekend I decided I wanted to know more about how @{#DevOps}|topic:null| worked so I decided to switch from Netlify to Amazon S3. Instead of creating any #Git Webhooks I decided to use Buddy for my pipeline and to run commands. Buddy is a fantastic tool, very easy to setup builds, copying the files to my Amazon S3 bucket, then running some #AWS console commands to set the content-encoding of the JavaScript files. - Buddy is also free if you only have a few pipelines, so I didn't need to pay anything 🤙🏻.

When I made these changes I also wanted to monitor my code, and make sure I was keeping up with the best practices so I implemented Code Climate to look over my code and tell me where there code smells, issues, and other issues I've been super happy with it so far, on the free tier so its also free.

I did plan on using Amazon CloudFront for my SSL and cacheing, however it was overly complex to setup and it costs money. So I decided to go with the free tier of CloudFlare and it is amazing, best choice I've made for caching / SSL in a long time.

0 views0
Comments
Russel Werner
Russel Werner

Lead Engineer at StackShare

Dec 3, 2018

Needs adviceonReactReactGlamorousGlamorousApolloApollo

StackShare Feed is built entirely with React, Glamorous, and Apollo. One of our objectives with the public launch of the Feed was to enable a Server-side rendered (SSR) experience for our organic search traffic. When you visit the StackShare Feed, and you aren't logged in, you are delivered the Trending feed experience. We use an in-house Node.js rendering microservice to generate this HTML. This microservice needs to run and serve requests independent of our Rails web app. Up until recently, we had a mono-repo with our Rails and React code living happily together and all served from the same web process. In order to deploy our SSR app into a Heroku environment, we needed to split out our front-end application into a separate repo in GitHub. The driving factor in this decision was mostly due to limitations imposed by Heroku specifically with how processes can't communicate with each other. A new SSR app was created in Heroku and linked directly to the frontend repo so it stays in-sync with changes.

Related to this, we need a way to "deploy" our frontend changes to various server environments without building & releasing the entire Ruby application. We built a hybrid Amazon S3 Amazon CloudFront solution to host our Webpack bundles. A new CircleCI script builds the bundles and uploads them to S3. The final step in our rollout is to update some keys in Redis so our Rails app knows which bundles to serve. The result of these efforts were significant. Our frontend team now moves independently of our backend team, our build & release process takes only a few minutes, we are now using an edge CDN to serve JS assets, and we have pre-rendered React pages!

#StackDecisionsLaunch #SSR #Microservices #FrontEndRepoSplit

0 views0
Comments
Brian Renzenbrink
Brian Renzenbrink

Engineering Manager at Compass Inc.

Dec 3, 2018

Needs adviceonAWS LambdaAWS LambdaAmazon CloudFrontAmazon CloudFrontnpmnpm

At Compass, we’re big proponents of using NPM and semver (semantic versioning) when distributing our shared components as packages. NPM provides us with an industry-standard platform to publish our internal dependencies. The tools and technologies someone learns while working on a package at Compass are the same ones they’ll use in projects in the open source community. Meanwhile, semantic versioning itself plays a huge role in providing peace of mind. Users of shared components know when updates are safe enough to upgrade to, and component authors can make big updates without the fear of silently breaking the contracts they’ve made with their users. We wanted to build out a way to provide these same benefits to more than just JS libraries, and we ended up creating a lightning-fast form of semantic versioning for our CSS implementation that utilized Lambda@Edge, NPM, and some clever work by our engineers.

AWS Lambda Amazon CloudFront npm #lambdaatedge #semver #serverless

0 views0
Comments
Todd Gardner
Todd Gardner

President at TrackJS

Nov 29, 2018

Needs adviceonAmazon CloudFrontAmazon CloudFrontMaxCDNMaxCDN

We migrated the hosting of our CDN, which is used to serve the JavaScript Error collection agent, from Amazon CloudFront to MaxCDN. During our test, we found MaxCDN to be more reliable and less expensive for serving he file.

The reports and controls were also considerably better.

0 views0
Comments
Tim Specht
Tim Specht

‎Co-Founder and CTO at Dubsmash

Sep 13, 2018

Needs adviceonAmazon S3Amazon S3Amazon CloudFrontAmazon CloudFront

In the early days features like My Dubs, which enable users to upload their Dubs onto our platform, uploads were going directly against our API, which then stored the files in Amazon S3.

We quickly saw that this approach was crumbling our API performance big time. Since users usually have slower internet connections on their phones, the process of uploading the file took up a huge percentage of the processing time on our end, forcing us to spin up way more machines than we actually needed. We since have moved to a multi-way handshake-like upload process that uses signed URLs vendored to the clients upon request so they can upload the files directly to S3. These files are then distributed, cached, and served back to other clients through Amazon CloudFront.

#AssetsAndMedia #ContentDeliveryNetwork #CloudStorage

0 views0
Comments

Try It

Visit Website

Adoption

On StackShare

Companies
8.76k
9AAAAA+8758
Developers
12.8k
NRAPPB+12756