2017-05-26 15:28:06 -04:00
# Npm Packages
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
The [**Angular CLI** ](https://cli.angular.io/ ), Angular applications, and Angular itself depend upon features and functionality provided by libraries that are available as [**npm** ](https://docs.npmjs.com/ ) packages.
2017-03-27 11:08:53 -04:00
2018-04-26 18:47:31 -04:00
You can download and install these npm packages with the [**npm client** ](https://docs.npmjs.com/cli/install ), which runs as a Node.js® application.
2017-03-27 11:08:53 -04:00
2017-11-02 17:27:53 -04:00
The [**yarn client** ](https://yarnpkg.com/en/ ) is a popular alternative for downloading and installing npm packages.
The Angular CLI uses `yarn` by default to install npm packages when you create a new project.
2017-03-31 19:57:13 -04:00
2018-07-19 18:00:08 -04:00
< div class = "alert is-helpful" >
2017-03-31 19:57:13 -04:00
2017-03-11 08:44:25 -05:00
Node.js and npm are essential to Angular development.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
[Get them now ](https://docs.npmjs.com/getting-started/installing-node "Installing Node.js and updating npm" )
if they're not already installed on your machine.
2017-02-22 13:09:39 -05:00
2018-04-26 18:47:31 -04:00
**Verify that you are running Node.js `v8.x` or higher and npm `5.x` or higher**
2017-02-22 13:09:39 -05:00
by running the commands `node -v` and `npm -v` in a terminal/console window.
Older versions produce errors.
2017-03-11 08:44:25 -05:00
Consider using [nvm ](https://github.com/creationix/nvm ) for managing multiple
2018-04-26 18:47:31 -04:00
versions of Node.js and npm. You may need [nvm ](https://github.com/creationix/nvm ) if
you already have projects running on your machine that use other versions of Node.js and npm.
2017-03-27 11:08:53 -04:00
2017-04-10 11:51:13 -04:00
< / div >
2017-03-27 11:08:53 -04:00
2017-11-02 17:27:53 -04:00
## _package.json_
2017-03-31 19:57:13 -04:00
2018-04-26 19:38:23 -04:00
Both `npm` and `yarn` install packages that are identified in a [**package.json** ](https://docs.npmjs.com/files/package.json ) file.
2017-03-31 19:57:13 -04:00
2017-11-12 12:18:09 -05:00
The CLI `ng new` command creates a default `package.json` file for your project.
This `package.json` specifies _a starter set of packages_ that work well together and
2017-11-02 17:27:53 -04:00
jointly support many common application scenarios.
2017-02-22 13:09:39 -05:00
2017-11-12 12:18:09 -05:00
You will add packages to `package.json` as your application evolves.
2017-11-02 17:27:53 -04:00
You may even remove some.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
This guide focuses on the most important packages in the starter set.
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
#### *dependencies* and *devDependencies*
2017-03-31 19:57:13 -04:00
2017-03-11 08:44:25 -05:00
The `package.json` includes two sets of packages,
2017-03-11 10:36:40 -05:00
[dependencies ](guide/npm-packages#dependencies ) and [devDependencies ](guide/npm-packages#dev-dependencies ).
2017-02-22 13:09:39 -05:00
2017-03-11 08:44:25 -05:00
The *dependencies* are essential to *running* the application.
The *devDependencies* are only necessary to *develop* the application.
2017-02-22 13:09:39 -05:00
{@a dependencies}
2017-11-02 17:27:53 -04:00
## *Dependencies*
2017-02-22 13:09:39 -05:00
The `dependencies` section of `package.json` contains:
2017-11-02 17:27:53 -04:00
* **Angular packages**: Angular core and optional modules; their package names begin `@angular/` .
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
* **Support packages**: 3rd party libraries that must be present for Angular apps to run.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
* **Polyfill packages**: Polyfills plug gaps in a browser's JavaScript implementation.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
### Angular Packages
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
**@angular/animations**: Angular's animations library makes it easy to define and apply animation effects such as page and list transitions.
Read about it in the [Animations guide ](guide/animations ).
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
**@angular/common**: The commonly needed services, pipes, and directives provided by the Angular team.
The [`HttpClientModule` ](guide/http ) is also here, in the '@angular/common/http' subfolder.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**@angular/core**: Critical runtime parts of the framework needed by every application.
2017-02-22 13:09:39 -05:00
Includes all metadata decorators, `Component` , `Directive` , dependency injection, and the component lifecycle hooks.
2017-11-02 17:27:53 -04:00
**@angular/compiler**: Angular's *Template Compiler* .
2017-03-11 08:44:25 -05:00
It understands templates and can convert them to code that makes the application run and render.
2017-11-02 17:27:53 -04:00
Typically you don’ t interact with the compiler directly; rather, you use it indirectly via `platform-browser-dynamic` when [JIT compiling ](guide/aot-compiler ) in the browser.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**@angular/forms**: support for both [template-driven ](guide/forms ) and [reactive forms ](guide/reactive-forms ).
2017-02-22 13:09:39 -05:00
2018-08-03 12:30:15 -04:00
**@angular/http**: Angular's old, deprecated, HTTP client.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**@angular/platform-browser**: Everything DOM and browser related, especially
the pieces that help render into the DOM.
2018-08-03 12:30:15 -04:00
This package also includes the `bootstrapModuleFactory()` method
2017-11-02 17:27:53 -04:00
for bootstrapping applications for production builds that pre-compile with [AOT ](guide/aot-compiler ).
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**@angular/platform-browser-dynamic**: Includes [Providers ](api/core/Provider )
and methods to compile and run the app on the client
using the [JIT compiler ](guide/aot-compiler ).
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**@angular/router**: The [router module ](/guide/router ) navigates among your app pages when the browser URL changes.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**@angular/upgrade**: Set of utilities for upgrading AngularJS applications to Angular.
2017-02-22 13:09:39 -05:00
{@a polyfills}
### Polyfill packages
2017-11-02 17:27:53 -04:00
Many browsers lack native support for some features in the latest HTML standards,
features that Angular requires.
"[Polyfills](https://en.wikipedia.org/wiki/Polyfill)" can emulate the missing features.
The [Browser Support ](guide/browser-support ) guide explains which browsers need polyfills and
how you can add them.
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
The default `package.json` installs the ** [core-js ](https://github.com/zloirock/core-js )** package
which polyfills missing features for several popular browser.
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
### Support packages
2017-03-27 11:08:53 -04:00
2017-11-02 17:27:53 -04:00
**[rxjs](https://github.com/benlesh/RxJS)**: Many Angular APIs return _observables_ . RxJS is an implementation of the proposed [Observables specification ](https://github.com/zenparsing/es-observable ) currently before the
2017-02-22 13:09:39 -05:00
[TC39 ](http://www.ecma-international.org/memento/TC39.htm ) committee that determines standards for the JavaScript language.
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
**[zone.js](https://github.com/angular/zone.js)**: Angular relies on zone.js to run Angular's change detection processes when native JavaScript operations raise events. Zone.js is an implementation of a [specification ](https://gist.github.com/mhevery/63fdcdf7c65886051d55 ) currently before the
[TC39 ](http://www.ecma-international.org/memento/TC39.htm ) committee that determines standards for the JavaScript language.
2017-02-22 13:09:39 -05:00
{@a dev-dependencies}
2017-11-02 17:27:53 -04:00
## *DevDependencies*
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
The packages listed in the *devDependencies* section of the `package.json` help you develop the application on your local machine.
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
You don't deploy them with the production application although there is no harm in doing so.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**[@angular/cli](https://github.com/angular/angular-cli/)**: The Angular CLI tools.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**[@angular/compiler-cli](https://github.com/angular/angular/blob/master/packages/compiler-cli/README.md)**: The Angular compiler, which is invoked by the Angular CLI's `build` and `serve` commands.
2017-02-22 13:09:39 -05:00
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
**[@angular/language-service](https://github.com/angular/angular-cli/)**: The Angular language service analyzes component templates and provides type and error information that TypeScript-aware editors can use to improve the developer's experience.
For example, see the [Angular language service extension for VS Code ](https://marketplace.visualstudio.com/items?itemName=Angular.ng-template )
2017-03-31 19:57:13 -04:00
2017-02-22 13:09:39 -05:00
2018-04-26 18:47:31 -04:00
**@types/... ** : TypeScript definition files for 3rd party libraries such as Jasmine and Node.js.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**[codelyzer](https://www.npmjs.com/package/codelyzer)**: A linter for Angular apps whose rules conform to the Angular [style guide ](guide/styleguide ).
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**jasmine/... ** : packages to support the [Jasmine ](https://jasmine.github.io/ ) test library.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**karma/... ** : packages to support the [karma ](https://www.npmjs.com/package/karma ) test runner.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**[protractor](https://www.npmjs.com/package/protractor)**: an end-to-end (e2e) framework for Angular apps.
Built on top of [WebDriverJS ](https://github.com/SeleniumHQ/selenium/wiki/WebDriverJs ).
2017-03-11 08:44:25 -05:00
2017-02-22 13:09:39 -05:00
2018-04-26 18:47:31 -04:00
**[ts-node](https://www.npmjs.com/package/ts-node)**: TypeScript execution environment and REPL for Node.js.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**[tslint](https://www.npmjs.com/package/tslint)**: a static analysis tool that checks TypeScript code for readability, maintainability, and functionality errors.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
**[typescript](https://www.npmjs.com/package/typescript)**:
the TypeScript language server, including the *tsc* TypeScript compiler.
2017-03-27 11:08:53 -04:00
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
## So many packages! So many files!
2017-03-31 19:57:13 -04:00
2017-11-02 17:27:53 -04:00
The default `package.json` installs more packages than you'll need for your project.
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
A given package may contain tens, hundreds, even thousands of files,
all of them in your local machine's `node_modules` directory.
The sheer volume of files is intimidating,
2017-02-22 13:09:39 -05:00
2017-11-02 17:27:53 -04:00
You can remove packages that you don't need but how can you be sure that you won't need it?
As a practical matter, it's better to install a package you don't need than worry about it.
Extra packages and package files on your local development machine are harmless.
2017-03-27 11:08:53 -04:00
2017-11-02 17:27:53 -04:00
By default the Angular CLI build process bundles into a single file just the few "vendor" library files that your application actually needs.
The browser downloads this bundle, not the original package files.
2017-03-27 11:08:53 -04:00
2017-11-02 17:27:53 -04:00
See the [Deployment ](guide/deployment ) to learn more.