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

Deploying over FTP


In this recipe, we will make use of the ftp-push (0.3.2) plugin to upload files to a hosting server, using the File Transfer Protocol (FTP).

FTP has been around since the early days of the Internet and is still in abundant use. As its name implies, it provides a way to transfer files over the Internet and as such, has been the staple for the deployment of resources to web servers since its inception.

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 are not yet familiar with its contents.

In addition to the standard project setup, the following recipe will also require an existing user account on the targeted FTP-enabled server. Their credentials are usually provided by the hosting service or the systems administrator in charge of maintaining the server in question.

How to do it...

The following steps take us through creating...