Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)



Set Up Environment

Set Up Web Starter Kit

Follow this guide to set up the Web Starter Kit. Simply pick a layout and start coding. For help building a responsive and performant site, set up the build tools.

TL;DR

  • Decide how much UX to inherit from the Web Starter Kit. Do you want a responsive layout or a basic boilerplate?
  • The Web Starter Kit tools are optional, but if you don't have a set of build tools, use them.
  • Once you've successfully set up the build tools, the site automatically loads in the browser.

Clone repository

To use the Web Starter Kit, simply clone the repository or download the latest release and build on what’s included in the app directory:

git clone https://github.com/google/web-starter-kit.git

$ cd web-starter-kit/app

Install tooling

If you’re using the Web Starter Kit tools, make sure your system has Node , Ruby , Gulp , and the Sass gem installed.

Note

  • Most of your interactions with the Web Starter Kit will be through the command line. Run commands in the Terminal app if you’re on Mac, your shell in Linux, or cmd.exe if you are on Windows.

Node

Check if you already have Node installed. Bring up a terminal and type node -v . If Node responds, and if it shows a version at or above v0.10.x, proceed to checking if you have Ruby installed too. If you require Node, go to NodeJS.org and click on the big green Install button.

Ruby

Bring up a terminal and type ruby -v . If Ruby responds, and if it shows a version number at or above 1.8.7, then type gem --version . If you don’t see any errors, proceed to installing the Sass gem. If you require Ruby, it can be installed from the Ruby downloads page.

Sass gem

Bring up a terminal and type sass -v . If Sass is installed, it should return a version number at or above 3.3.x. If you don’t see any errors, proceed to the Gulp installation. If you need to install Sass, see the command-line instructions on the Sass installation page.

Gulp

Bring up a terminal and type gulp -v . If Gulp is installed it should return a version number at or above 3.5.x. If you don’t see any errors, proceed to the Gulp commands section. If you need to install Gulp, open up a terminal and type in the following:

$ sudo npm install --global gulp

This will install Gulp globally. Next, install the local dependencies Web Starter Kit requires:

$ cd web-starter-kit $ npm install

That’s it! You should now have everything needed to use the Gulp tools in Web Starter Kit.

Pick a layout

Pick one of these layouts in the web-starter-kit/app folder that most fits your needs:

Starter File Description
index.html Default starting point. Includes a slide-out menu. To choose this as your starting point, remove the alternative basic.html file.
basic.html Very basic starting point. No navigation. Simple, but responsive styles. To choose this as your starting point, remove the alternative index.html file.

Build the project

In the root of the project web-starter-kit , run the gulp tool to build the current project. The first time you run this tool, it creates the project directory: web-starter-kit/dist .

Review the build output

Here’s a snapshot of the project files in the web-starter-kit/dist directory:

project files in dist directory

Stage the build output

From the web-starter-kit folder, run the gulp serve tool to open up a local staged version of the project (for more information on this tool, see Track code changes and optimize ). The tool opens up the build version of your starter file, index.html .

Collapsed and expanded views on desktop:

default and collapsed view on desktop

Default and expanded menu views on mobile:

default and expanded menu view on mobile

Open emulation tool

Once your site is running in a browser, open the Chrome DevTools emulation panel , select a mobile device, and emulate:

index.html in emulation pane

What’s Next?

Now that you’ve set up the Web Starter Kit, try building a site .

Updated on 2014-05-29

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 3.0 License , and code samples are licensed under the Apache 2.0 License . For details, see our Site Policies .