2015-11-05 07:33:56 -05:00
@cheatsheetSection
2015-11-06 07:26:24 -05:00
Bootstrapping
@cheatsheetIndex 0
2015-11-05 07:33:56 -05:00
@description
2016-06-26 10:31:35 -04:00
{@target ts}`import { bootstrap } from '@angular/platform-browser-dynamic';`{@endtarget}
2015-12-15 20:36:40 -05:00
{@target js}Available from the `ng.platform.browser` namespace{@endtarget}
2016-03-17 15:49:46 -04:00
{@target dart}`import 'package:angular2/platform/browser.dart';`{@endtarget}
2015-11-05 07:33:56 -05:00
@cheatsheetItem
2015-12-12 22:17:26 -05:00
syntax(ts dart):
2016-06-15 18:11:39 -04:00
`bootstrap (MyAppComponent, [MyService, { provide: ... }]);` |`provide`
2015-12-12 22:17:26 -05:00
syntax(js):
`document.addEventListener('DOMContentLoaded', function () {
ng.platform.browser.bootstrap(MyAppComponent,
2016-06-15 18:11:39 -04:00
[MyService, { provide: ... }]);
2015-12-12 22:17:26 -05:00
});`|`provide`
2015-12-09 07:33:42 -05:00
description:
2015-12-12 22:17:26 -05:00
Bootstraps an application with MyAppComponent as the root component and configures the DI providers. {@target js}Must be wrapped in the event listener to fire when the page loads.{@endtarget}