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

Fetching a single URL


If you're working on web-based projects, you'll probably want to download something at some point. Downloading a file is quite a simple operation, but automating it can save you a significant amount of time in the long run.

We'll make use of the relatively popular curl (2.0.2) plugin to download a resource from the Internet. The curl task is provided by this plugin to download single files.

Getting ready

In this example, we'll work with the basic project structure 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 are not yet familiar with its contents.

How to do it...

The following steps will take us through using the OpenWeatherMap API to download the current weather for the city of London and saving it to the london.json file.

  1. We'll start by installing the package that contains the curl plugin as per the instructions provided in the Installing a plugin recipe in Chapter 1, Getting Started with...