2016-06-23 09:47:54 -07:00
/ * *
* @license
* Copyright Google Inc . All Rights Reserved .
*
* Use of this source code is governed by an MIT - style license that can be
* found in the LICENSE file at https : //angular.io/license
* /
2019-03-11 19:20:40 -05:00
import { CommonModule , DOCUMENT , PlatformLocation , ɵ PLATFORM_BROWSER_ID as PLATFORM_BROWSER_ID } from '@angular/common' ;
2018-08-03 12:30:40 -07:00
import { APP_ID , ApplicationModule , ErrorHandler , Inject , ModuleWithProviders , NgModule , NgZone , Optional , PLATFORM_ID , PLATFORM_INITIALIZER , PlatformRef , RendererFactory2 , Sanitizer , SkipSelf , StaticProvider , Testability , createPlatformFactory , platformCore , ɵ APP_ROOT as APP_ROOT , ɵ Console as Console } from '@angular/core' ;
2016-06-08 16:38:52 -07:00
import { BrowserDomAdapter } from './browser/browser_adapter' ;
import { BrowserPlatformLocation } from './browser/location/browser_platform_location' ;
2017-02-22 16:06:21 -08:00
import { SERVER_TRANSITION_PROVIDERS , TRANSITION_ID } from './browser/server-transition' ;
2016-06-08 16:38:52 -07:00
import { BrowserGetTestability } from './browser/testability' ;
import { ELEMENT_PROBE_PROVIDERS } from './dom/debug/ng_probe' ;
2017-03-07 16:36:12 -08:00
import { DomRendererFactory2 } from './dom/dom_renderer' ;
2016-06-08 16:38:52 -07:00
import { DomEventsPlugin } from './dom/events/dom_events' ;
2018-08-03 12:30:40 -07:00
import { EVENT_MANAGER_PLUGINS , EventManager } from './dom/events/event_manager' ;
2018-06-26 16:41:43 -07:00
import { HAMMER_GESTURE_CONFIG , HAMMER_LOADER , HammerGestureConfig , HammerGesturesPlugin } from './dom/events/hammer_gestures' ;
2016-06-08 16:38:52 -07:00
import { KeyEventsPlugin } from './dom/events/key_events' ;
import { DomSharedStylesHost , SharedStylesHost } from './dom/shared_styles_host' ;
2016-08-25 15:41:19 -07:00
import { DomSanitizer , DomSanitizerImpl } from './security/dom_sanitization_service' ;
2016-05-20 16:11:49 -07:00
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 12:33:29 -07:00
export const INTERNAL_BROWSER_PLATFORM_PROVIDERS : StaticProvider [ ] = [
2017-02-22 16:49:46 -08:00
{ provide : PLATFORM_ID , useValue : PLATFORM_BROWSER_ID } ,
2016-07-18 03:50:31 -07:00
{ provide : PLATFORM_INITIALIZER , useValue : initDomAdapter , multi : true } ,
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 12:33:29 -07:00
{ provide : PlatformLocation , useClass : BrowserPlatformLocation , deps : [ DOCUMENT ] } ,
2017-02-14 16:14:40 -08:00
{ provide : DOCUMENT , useFactory : _document , deps : [ ] } ,
2016-07-18 03:50:31 -07:00
] ;
2016-05-20 16:11:49 -07:00
2016-06-27 12:27:23 -07:00
/ * *
2016-06-28 11:01:35 -07:00
* @security Replacing built - in sanitization providers exposes the application to XSS risks .
* Attacker - controlled data introduced by an unsanitized provider could expose your
* application to XSS risks . For more detail , see the [ Security Guide ] ( http : //g.co/ng/security).
2018-10-19 12:12:20 +01:00
* @publicApi
2016-06-27 12:27:23 -07:00
* /
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 12:33:29 -07:00
export const BROWSER_SANITIZATION_PROVIDERS : StaticProvider [ ] = [
2016-08-25 15:41:19 -07:00
{ provide : Sanitizer , useExisting : DomSanitizer } ,
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 12:33:29 -07:00
{ provide : DomSanitizer , useClass : DomSanitizerImpl , deps : [ DOCUMENT ] } ,
2016-05-20 16:11:49 -07:00
] ;
2018-10-19 14:37:01 +01:00
/ * *
* @publicApi
* /
perf: switch angular to use StaticInjector instead of ReflectiveInjector
This change allows ReflectiveInjector to be tree shaken resulting
in not needed Reflect polyfil and smaller bundles.
Code savings for HelloWorld using Closure:
Reflective: bundle.js: 105,864(34,190 gzip)
Static: bundle.js: 154,889(33,555 gzip)
645( 2%)
BREAKING CHANGE:
`platformXXXX()` no longer accepts providers which depend on reflection.
Specifically the method signature when from `Provider[]` to
`StaticProvider[]`.
Example:
Before:
```
[
MyClass,
{provide: ClassA, useClass: SubClassA}
]
```
After:
```
[
{provide: MyClass, deps: [Dep1,...]},
{provide: ClassA, useClass: SubClassA, deps: [Dep1,...]}
]
```
NOTE: This only applies to platform creation and providers for the JIT
compiler. It does not apply to `@Compotent` or `@NgModule` provides
declarations.
Benchpress note: Previously Benchpress also supported reflective
provides, which now require static providers.
DEPRECATION:
- `ReflectiveInjector` is now deprecated as it will be remove. Use
`Injector.create` as a replacement.
closes #18496
2017-08-03 12:33:29 -07:00
export const platformBrowser : ( extraProviders? : StaticProvider [ ] ) = > PlatformRef =
2016-07-26 05:21:19 -07:00
createPlatformFactory ( platformCore , 'browser' , INTERNAL_BROWSER_PLATFORM_PROVIDERS ) ;
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
export function initDomAdapter() {
2016-05-20 16:11:49 -07:00
BrowserDomAdapter . makeCurrent ( ) ;
BrowserGetTestability . init ( ) ;
}
2016-08-25 00:50:16 -07:00
export function errorHandler ( ) : ErrorHandler {
return new ErrorHandler ( ) ;
2016-05-20 16:11:49 -07:00
}
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
export function _document ( ) : any {
2017-02-14 16:14:40 -08:00
return document ;
2016-05-20 16:11:49 -07:00
}
2016-05-25 12:46:22 -07:00
2018-05-09 16:49:39 -07:00
export const BROWSER_MODULE_PROVIDERS : StaticProvider [ ] = [
BROWSER_SANITIZATION_PROVIDERS ,
{ provide : APP_ROOT , useValue : true } ,
{ provide : ErrorHandler , useFactory : errorHandler , deps : [ ] } ,
{
provide : EVENT_MANAGER_PLUGINS ,
useClass : DomEventsPlugin ,
multi : true ,
deps : [ DOCUMENT , NgZone , PLATFORM_ID ]
} ,
{ provide : EVENT_MANAGER_PLUGINS , useClass : KeyEventsPlugin , multi : true , deps : [ DOCUMENT ] } ,
{
provide : EVENT_MANAGER_PLUGINS ,
useClass : HammerGesturesPlugin ,
multi : true ,
2018-06-26 16:41:43 -07:00
deps : [ DOCUMENT , HAMMER_GESTURE_CONFIG , Console , [ new Optional ( ) , HAMMER_LOADER ] ]
2018-05-09 16:49:39 -07:00
} ,
{ provide : HAMMER_GESTURE_CONFIG , useClass : HammerGestureConfig , deps : [ ] } ,
{
provide : DomRendererFactory2 ,
useClass : DomRendererFactory2 ,
deps : [ EventManager , DomSharedStylesHost ]
} ,
{ provide : RendererFactory2 , useExisting : DomRendererFactory2 } ,
{ provide : SharedStylesHost , useExisting : DomSharedStylesHost } ,
{ provide : DomSharedStylesHost , useClass : DomSharedStylesHost , deps : [ DOCUMENT ] } ,
{ provide : Testability , useClass : Testability , deps : [ NgZone ] } ,
{ provide : EventManager , useClass : EventManager , deps : [ EVENT_MANAGER_PLUGINS , NgZone ] } ,
ELEMENT_PROBE_PROVIDERS ,
] ;
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
/ * *
2018-08-22 08:52:19 -07:00
* Exports required infrastructure for all Angular apps .
2019-02-18 15:02:54 -06:00
* Included by default in all Angular apps created with the CLI
2018-08-22 08:52:19 -07:00
* ` new ` command .
* Re - exports ` CommonModule ` and ` ApplicationModule ` , making their
* exports and providers available to all apps .
refactor(core): clean up platform bootstrap and initTestEnvironment
- Introduces `CompilerFactory` which can be part of a `PlatformRef`.
- Introduces `WorkerAppModule`, `WorkerUiModule`, `ServerModule`
- Introduces `serverDynamicPlatform` for applications using runtime compilation
on the server.
- Changes browser bootstrap for runtime and offline compilation (see below for an example).
* introduces `bootstrapModule` and `bootstrapModuleFactory` in `@angular/core`
* introduces new `browserDynamicPlatform` in `@angular/platform-browser-dynamic
- Changes `initTestEnvironment` (which used to be `setBaseTestProviders`) to not take a compiler factory any more (see below for an example).
BREAKING CHANGE:
## Migration from `setBaseTestProviders` to `initTestEnvironment`:
- For the browser platform:
BEFORE:
```
import {setBaseTestProviders} from ‘@angular/core/testing’;
import {TEST_BROWSER_DYNAMIC_PLATFORM_PROVIDERS,
TEST_BROWSER_DYNAMIC_APPLICATION_PROVIDERS} from ‘@angular/platform-browser-dynamic/testing’;
setBaseTestProviders(TEST_BROWSER_DYNAMIC_PLATFORM_PROVIDERS,
TEST_BROWSER_DYNAMIC_APPLICATION_PROVIDERS);
```
AFTER:
```
import {initTestEnvironment} from ‘@angular/core/testing’;
import {browserDynamicTestPlatform,
BrowserDynamicTestModule} from ‘@angular/platform-browser-dynamic/testing’;
initTestEnvironment(
BrowserDynamicTestModule,
browserDynamicTestPlatform());
```
- For the server platform:
BEFORE:
```
import {setBaseTestProviders} from ‘@angular/core/testing’;
import {TEST_SERVER_PLATFORM_PROVIDERS,
TEST_SERVER_APPLICATION_PROVIDERS} from ‘@angular/platform-server/testing/server’;
setBaseTestProviders(TEST_SERVER_PLATFORM_PROVIDERS,
TEST_SERVER_APPLICATION_PROVIDERS);
```
AFTER:
```
import {initTestEnvironment} from ‘@angular/core/testing’;
import {serverTestPlatform,
ServerTestModule} from ‘@angular/platform-browser-dynamic/testing’;
initTestEnvironment(
ServerTestModule,
serverTestPlatform());
```
## Bootstrap changes
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {browserPlatform} from ‘@angular/platform-browser’;
import {bootstrapModuleFactory} from ‘@angular/core’;
bootstrapModuleFactory(MyModuleNgFactory, browserPlatform());
// runtime compile long form
import {browserDynamicPlatform} from ‘@angular/platform-browser-dynamic’;
import {bootstrapModule} from ‘@angular/core’;
bootstrapModule(MyModule, browserDynamicPlatform());
```
Closes #9922
Part of #9726
2016-07-08 10:47:17 -07:00
*
2018-10-19 14:37:01 +01:00
* @publicApi
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
* /
2018-05-09 16:49:39 -07:00
@NgModule ( { providers : BROWSER_MODULE_PROVIDERS , exports : [ CommonModule , ApplicationModule ] } )
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
export class BrowserModule {
2018-05-09 16:49:39 -07:00
constructor ( @Optional ( ) @SkipSelf ( ) @Inject ( BrowserModule ) parentModule : BrowserModule | null ) {
2016-08-18 13:34:28 -07:00
if ( parentModule ) {
2016-08-25 00:50:16 -07:00
throw new Error (
2016-08-18 13:34:28 -07:00
` BrowserModule has already been loaded. If you need access to common directives such as NgIf and NgFor from a lazy loaded module, import CommonModule instead. ` ) ;
}
}
2017-02-22 16:06:21 -08:00
/ * *
2018-08-22 08:52:19 -07:00
* Configures a browser - based app to transition from a server - rendered app , if
* one is present on the page .
*
* @param params An object containing an identifier for the app to transition .
* The ID must match between the client and server versions of the app .
* @returns The reconfigured ` BrowserModule ` to import into the app ' s root ` AppModule ` .
2017-02-22 16:06:21 -08:00
* /
2018-07-09 11:36:30 -07:00
static withServerTransition ( params : { appId : string } ) : ModuleWithProviders < BrowserModule > {
2017-02-22 16:06:21 -08:00
return {
ngModule : BrowserModule ,
providers : [
{ provide : APP_ID , useValue : params.appId } ,
{ provide : TRANSITION_ID , useExisting : APP_ID } ,
SERVER_TRANSITION_PROVIDERS ,
] ,
} ;
}
feat(browser): use AppModules for bootstrap in the browser
This introduces the `BrowserModule` to be used for long form
bootstrap and offline compile bootstrap:
```
@AppModule({
modules: [BrowserModule],
precompile: [MainComponent],
providers: […], // additional providers
directives: […], // additional platform directives
pipes: […] // additional platform pipes
})
class MyModule {
constructor(appRef: ApplicationRef) {
appRef.bootstrap(MainComponent);
}
}
// offline compile
import {bootstrapModuleFactory} from ‘@angular/platform-browser’;
bootstrapModuleFactory(MyModuleNgFactory);
// runtime compile long form
import {bootstrapModule} from ‘@angular/platform-browser-dynamic’;
bootstrapModule(MyModule);
```
The short form, `bootstrap(...)`, can now creates a module on the fly,
given `directives`, `pipes, `providers`, `precompile` and `modules`
properties.
Related changes:
- make `SanitizationService`, `SecurityContext` public in `@angular/core` so that the offline compiler can resolve the token
- move `AnimationDriver` to `platform-browser` and make it
public so that the offline compiler can resolve the token
BREAKING CHANGES:
- short form bootstrap does no longer allow
to inject compiler internals (i.e. everything
from `@angular/compiler). Inject `Compiler` instead.
To provide custom providers for the compiler,
create a custom compiler via `browserCompiler({providers: [...]})`
and pass that into the `bootstrap` method.
2016-06-30 13:07:17 -07:00
}