Book Image

Grunt Cookbook

By : Jurie-Jan Botha
Book Image

Grunt Cookbook

By: Jurie-Jan Botha

Overview of this book

<p>A web application can quickly turn into a complex orchestration of many smaller components, each one requiring its own bit of maintenance. Grunt allows you to automate all the repetitive tasks required to get everything working together by using JavaScript, the most popular programming language.</p> <p>Grunt Cookbook offers a host of easy-to-follow recipes for automating repetitive tasks in your web application's development, management, and deployment processes. This book will introduce you to methods that can be used to automate basic processes and your favorite tools. By following the recipes, you will soon be comfortable using Grunt to perform a wide array of advanced tasks in a range of different scenarios.</p>
Table of Contents (17 chapters)
Grunt Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Invalidating an AWS CloudFront distribution


In this recipe, we make use of the invalidate-cloudfront (0.1.6) plugin to invalidate a AWS CloudFront distribution.

The AWS CloudFront service provides us with an easy way to distribute the files of our websites and applications over a CDN with edge locations all over the world. This leads to faster response times for our intended audience, no matter where they may be in the world.

A side effect of having our file hosted on a CDN is that whenever they are updated at the source, the updates may take a while to reflect at the various edge locations, potentially keeping critical updates from our audience. AWS CloudFront does, however, allow us to indicate that we'd like to refresh the content that is stored on the CDN by invalidating a distribution.

Getting ready

In this example, we'll work with the basic project structure that we created in the Installing Grunt on a project recipe in Chapter 1, Getting Started with Grunt. Be sure to refer to it if you...