| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
This document describes how to set up your development environment to build and test Angular, both JS and Dart versions. It also explains the basic mechanics of using git, node, and npm.
See the contribution guidelines if you'd like to contribute to Angular.
Before you can build and test Angular, you must install and configure the following products on your development machine:
Git and/or the GitHub app (for Mac or Windows); GitHub's Guide to Installing Git is a good source of information.
Node.js, (version >=5.4.1 <6) which is used to run a development web server, run tests, and generate distributable files. We also use Node's Package Manager, npm (version >=3.5.3 <4.0), which comes with Node. Depending on your system, you can install Node either from source or as a pre-packaged bundle.
Optional: Dart (version >=1.13.2 <2.0.0), specifically the Dart-SDK and
Dartium (a version of Chromium with native support for Dart through
the Dart VM). One of the simplest ways to get both is to install the Dart Editor bundle,
which includes the editor, SDK and Dartium. See the Dart tools
download page for instructions.
You can also download both stable and dev channel versions from the download
archive. In that case, on Windows, Dart must be added
to the Path (e.g. path-to-dart-sdk-folder\bin) and a new DARTIUM_BIN environment variable must be
created, pointing to the executable (e.g. path-to-dartium-folder\chrome.exe).
Fork and clone the Angular repository:
# Clone your GitHub repository:
git clone git@github.com:<github username>/angular.git
# Go to the Angular directory:
cd angular
# Add the main Angular repository as an upstream remote to your repository:
git remote add upstream https://github.com/angular/angular.gitDefine the environment variables listed below. These are mainly needed for the testing. The notation shown here is for bash; adapt as appropriate for your favorite shell.
Examples given below of possible values for initializing the environment variables assume Mac OS X and that you have installed the Dart Editor in the directory named by DART_EDITOR_DIR=/Applications/dart. This is only for illustrative purposes.
# DARTIUM_BIN: path to a Dartium browser executable; used by Karma to run Dart tests
export DARTIUM_BIN="$DART_EDITOR_DIR/chromium/Chromium.app/Contents/MacOS/Chromium"Add the Dart SDK bin directory to your path and/or define DART_SDK (this is also detailed here):
# DART_SDK: path to a Dart SDK directory
export DART_SDK="$DART_EDITOR_DIR/dart-sdk"
# Update PATH to include the Dart SDK bin directory
PATH+=":$DART_SDK/bin"And specify where the pub’s dependencies are downloaded. By default, this directory is located under .pub_cache in your home directory (on Mac and Linux), or in AppData\Roaming\Pub\Cache (on Windows).
# PUB_CACHE: location of pub dependencies
export PUB_CACHE="/Users/<user>/.pub-cache"Next, install the JavaScript modules and Dart packages needed to build and test Angular:
# Install Angular project dependencies (package.json)
npm installOptional: In this document, we make use of project local npm package scripts and binaries (stored under ./node_modules/.bin) by prefixing these command invocations with $(npm bin); in particular gulp and protractor commands. If you prefer, you can drop this path prefix by either:
Option 1: globally installing these two packages as follows:
Since global installs can become stale, and required versions can vary by project, we avoid their use in these instructions.
Option 2: defining a bash alias like alias nbin='PATH=$(npm bin):$PATH' as detailed in this Stackoverflow answer and used like this: e.g., nbin gulp build.
To build Angular and prepare tests, run:
$(npm bin)/gulp buildNotes:
You can selectively build either the JS or Dart versions as follows:
To clean out the dist folder, run:
$(npm bin)/gulp cleanYou can selectively run either the JS or Dart versions as follows:
You can run just the unit tests as follows:
If you prefer running tests in "single-run" mode rather than watch mode use:
The task updates the dist folder with transpiled code whenever a source or test file changes, and Karma is run against the new output.
Note: If you want to only run a single test you can alter the test you wish to run by changing it to iit or describe to ddescribe. This will only run that individual test and make it much easier to debug. xit and xdescribe can also be useful to exclude a test and a group of tests respectively.
Note: watch mode needs symlinks to work, so if you're using windows, ensure you have the rights to built them in your operating system.
First, in a terminal, create a tunnel with Sauce Connect or Browser Stack Local, and valid credentials.
Then, in another terminal:
export SAUCE_USERNAME='my_user'; export SAUCE_ACCESS_KEY='my_key'; export BROWSER_STACK_USERNAME='my_user'; export BROWSER_STACK_ACCESS_KEY='my_key';
Some examples of commands:
gulp test.unit.js.sauce --browsers=Safari8,ie11 //run in Sauce Labs with Safari 8 and IE11 gulp test.unit.js.browserstack --browsers=Safari,IE //run in Browser Stack with Safari 7, Safari 8, Safari 9, IE 9, IE 10 and IE 11 gulp test.unit.js.sauce --browsers=IOS,safari8,android5.1 //run in Sauce Labs with iOS 7, iOS 8, iOs 9, Safari 8 and Android 5.1
Angular specific command line options when running protractor:
Angular specific command line options when running protractor (e.g. force gc, ...): $(npm bin)/protractor protractor-{js|dart2js}-conf.js --ng-help
We use clang-format to automatically enforce code style for our TypeScript code. This allows us to focus our code reviews more on the content, and less on style nit-picking. It also lets us encode our style guide in the .clang-format file in the repository, allowing many tools and editors to share our settings.
To check the formatting of your code, run
gulp check-format
Note that the continuous build on Travis runs gulp enforce-format. Unlike the check-format task, this will actually fail the build if files aren't formatted according to the style guide.
Your life will be easier if you include the formatter in your standard workflow. Otherwise, you'll likely forget to check the formatting, and waste time waiting for a build on Travis that fails due to some whitespace difference.
$ echo -e '#!/bin/sh\nexec git clang-format' > .git/hooks/pre-commit
$ chmod u+x !$
We use tslint for linting. See linting rules in gulpfile. To lint, run
$ gulp lintThe following gulp task will generate the API docs in the dist/angular.io/partials/api/angular2:
$(npm bin)/gulp docs/angular.ioYou can serve the generated documentation to check how it would render on angular.io:
For instructions on setting up Continuous Integration using Travis, see the instructions given here.
See the wiki.
If you need to debug the transpiler:
See the Node.js manual for more information.
Notes:
If you need to debug the tests:
Note (WebStorm users):
The debugger; statement is needed because WebStorm will stop in a transpiled file. Breakpoints in the original source files are not supported at the moment.
| Back | FazBrowse Home | New Git URL |