-
-
Notifications
You must be signed in to change notification settings - Fork 11
Fast Starts
Duncan Faulkner edited this page Feb 25, 2023
·
2 revisions
npm install https://github.com/ngbracket/ngx-layout-builds --save
Note: this installs a nightly build required for Angular 4.x; until Beta.9 is released.
Next, modify your app.module.ts
to use the FlexLayoutModule
:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FlexLayoutModule } from '@ngbracket/ngx-layout';
import { DemoAppComponent } from './demo-app/demo-app';
@NgModule({
declarations: [DemoAppComponent],
bootstrap: [DemoAppComponent],
imports: [BrowserModule, FlexLayoutModule],
})
export class DemoAppModule {}
If your project is using SystemJS for module loading, you will need to add @ngbracket/ngx-layout
to the SystemJS
configuration.
Here is a example configuration where @ngbracket/ngx-layout
is used:
System.config({
// Existing configuration options
map: {
// ...
'@ngbracket/ngx-layout':
'npm:@ngbracket/ngx-layout/bundles/flex-layout.umd.js',
// ...
},
});
If you are using the Angular CLI to bundle and serve your application (using ng serve
), run the following command:
npm install ngbracket/ngx-layout-builds
Next, modify your app.module.ts
to use the FlexLayoutModule
:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FlexLayoutModule } from '@ngbracket/ngx-layout';
import { DemoAppComponent } from './demo-app/demo-app';
@NgModule({
declarations: [DemoAppComponent],
bootstrap: [DemoAppComponent],
imports: [BrowserModule, FlexLayoutModule],
})
export class DemoAppModule {}
Developers can, however, easily install this @ngbracket/ngx-layout
library using a local repository build
and a directory copy:
npm run lib:build
cd dist/packages/ngx-layout
npm pack /* This will create an npm binary that you can install from */
-
Quick Links
-
Documentation
-
Demos
-
StackBlitz Templates
-
Learning FlexBox
-
History
-
Developer Guides
-
Contributing