Netlify Logo Image Netlify logo without the text Netlify Logo Text Netlify logo without the image Menu Continuous Deployment Hosting Only Hosting Only Continuous Deployment Arrow pointing right Arrow pointing right Key hole Plus Close Check mark Fatal Warning Arrow pointing right Plus Minus GitHub GitHub LinkedIn LinkedIn Gitter Gitter Facebook Facebook Twitter Twitter

A Step-by-Step Guide: Hosting Angular Apps on Netlify

Today, we’re going to look at how to host applications built with AngularJS on Netlify, including setting up continuous deployment.

Let’s start from scratch. If you already have an AngularJS project set up, you can skip straight to the Connecting to Netlify section.

Installing Angular

This guide assumes you have Node.js installed.

We’ll be using a tool called Yeoman to build our project. Yeoman is a scaffolding tool that works in conjunction with a package manager (like NPM or Bower) and a build tool (like Grunt or Gulp) to create modern web apps.

Open your terminal, and enter the following command:

$ npm install -g grunt-cli bower yo generator-karma generator-angular

The -g flag will install the tools globally on your system, which you need to make sure they have access to the proper dependencies.

Create a directory for your new project. We’ll call this one angularyeoman $ mkdir PATH/TO/angularyeoman Now change to that directory $ cd PATH/TO/angularyeoman Yo will build your scaffolding based on the generator that you installed. Since we installed generator-angular, run this command: $ yo angular Yo will ask a few simple questions to ge you started. For now, let’s say “No” to Gulp, “No” to SASS, and “Yes” to boostrap. Next, let Yeoman install the suggested Angular modules, just by hitting ‘enter’.

You can test your install by running: grunt serve Grunt will run a local, Node-based server at localhost:9000.

Like what you see? Great. Let’s move on!

Now it’s time to push it to your repo of choice. Directions for GitHub follow here.

Creating your Git Repo

Create a new repository on GitHub. To avoid errors, do not initialize the new repository with README, license, or gitignore files. You can add these files after your project has been pushed to GitHub.

Open Terminal (for Mac users) or the command prompt (for Windows and Linux users).

For our purposes, let’s call your new repo “angularyeoman”.

Change the current working directory to your local project.

$ cd ~/PATH/TO/angularyeoman/

Initialize the local directory as a Git repository. $ git init Add the files in your new local repository. This stages them for the first commit. $ git add . Commit the files that you’ve staged in your local repository. $ git commit -m 'First commit'

At the top of your GitHub repository’s Quick Setup page, click the clipboard icon to copy the remote repository URL.

In Terminal, add the URL for the remote repository where your local repository will be pushed. git remote add origin Git_Repository_URL Verify your URL git remote -v Now, it’s time to push the changes in your local repository to GitHub. git push origin master

Now that your assets are up and running on GitHub, let’s connect them to Netlify.

Connecting to Netlify

Step 1: Add Your New Site

step 1 - add Creating a new site on Netlify is simple. Once you’ve logged in, you’ll be taken to https://app.netlify.com/sites. If you’re just starting out, there’s only one option.

Clicking “New Site” brings you to this screen:

step 2 - link

When you push to GitHub, Netlify does all the work. No more manual deploying of updates or changes!

Since your assets are hosted on GitHub, we’ll need to link Netlify to GitHub. Click “Link to GitHub”.

Step 3: Authorize Netlify

step 3 - authorize

It’s time to allow Netlify and GitHub to talk to each other. Clicking the “Authorize Application” button will do just that. Like it says in the image below, Netlify doesn’t store your GitHub access token on our servers. If you’d like to know more about the permissions Netlify requests and why we need them, you can visit https://docs.netlify.com/github-permissions/.

Step 4: Choose Your Repo

step 4 - repo

Now that you’ve connected Netlify and GitHub, you can see a list of your Git repos. There’s the “angularyeoman” repo we just pushed to GitHub. Let’s select it.

Step 5: Configure Your Settings

step 5 - configure

Here you can configure your options. For the purposes of this tutorial, make sure that your configuration matches the above screenshot, then click “Save”.

Step 6: Build Your Site

step 6 - build

Now it’s time to sit back and relax. Go grab something cold to drink, scratch the dog behind the ears, or just get up and walk around (you’ve probably been in front of the computer for too long today, right?). Netlify will do the rest, and you can watch the progress.

Step 7: Done

step 7 - done

Wait, you thought there was going to be more? Nope! Netlify has done it all for you, including giving your site a temporary name. Now you can add your custom domain, and your site will be live for your adoring public to view.

Netlify Features: History Pushtate and Prerendering

One of the problems with hosting single page apps on static web services like S3 or GitHub pages is a lack of support for history pushstate. Netlify lets you create a rewrite rule to display your index.html instead of a 404, giving you clean web addresses (no more #) and avoiding frustrating error pages. Find out more

Additionally, Netlify has built-in support for prerendering to give relevant content to webcrawlers, ensuring that your pages will get indexed correctly across all search engines and web properties. Find out more