2015-11-05 12:33:56 +00:00
@cheatsheetSection
2015-11-06 12:26:24 +00:00
Bootstrapping
@cheatsheetIndex 0
2015-11-05 12:33:56 +00:00
@description
2016-06-26 14:31:35 +00:00
{@target ts}`import { bootstrap } from '@angular/platform-browser-dynamic';`{@endtarget}
2015-12-16 01:36:40 +00:00
{@target js}Available from the `ng.platform.browser` namespace{@endtarget}
2016-03-17 19:49:46 +00:00
{@target dart}`import 'package:angular2/platform/browser.dart';`{@endtarget}
2015-11-05 12:33:56 +00:00
@cheatsheetItem
2015-12-13 03:17:26 +00:00
syntax(ts dart):
2016-06-15 22:11:39 +00:00
`bootstrap (MyAppComponent, [MyService, { provide: ... }]);` |`provide`
2015-12-13 03:17:26 +00:00
syntax(js):
`document.addEventListener('DOMContentLoaded', function () {
ng.platform.browser.bootstrap(MyAppComponent,
2016-06-15 22:11:39 +00:00
[MyService, { provide: ... }]);
2015-12-13 03:17:26 +00:00
});`|`provide`
2015-12-09 12:33:42 +00:00
description:
2015-12-13 03:17:26 +00: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}