-
-
Notifications
You must be signed in to change notification settings - Fork 11
Using Angular CLI
Duncan Faulkner edited this page Feb 25, 2023
·
2 revisions
Using ngx-layout with the the Angular CLI is easy.
# Global
npm uninstall -g @angular/cli
npm install -g @angular/cli
ng new my-project
rm -rf node_modules/
npm install
The new command creates a project with a build system for your Angular app.
npm install @ngbracket/ngx-layout --save
This installs the most recent npm release of Flex-Layout.
npm install ngbracket/ngx-layout-builds --save
This installs a nightly build which incorporates the latest updates not yet published to NPM
src/app/app.module.ts
import {NgModule} from '@angular/core';
import {FlexLayoutModule} from '@ngbracket/ngx-layout';
// other imports
@NgModule({
imports: [FlexLayoutModule],
...
})
export class PizzaPartyAppModule {}
If your project is using SystemJS for module loading, you will need to add @ngbracket/ngx-layout
to the SystemJS configuration:
System.config({
// existing configuration options
map: {
...,
'@ngbracket/ngx-layout': 'npm:@ngbracket/ngx-layout-builds/bundles/flex-layout.umd.js'
}
});
Developers are encouraged to review the live demos and source for the Flex-Layout Demos:
-
Quick Links
-
Documentation
-
Demos
-
StackBlitz Templates
-
Learning FlexBox
-
History
-
Developer Guides
-
Contributing