@bravobit/bb-foundation

The Angular core foundation of the Bravobit team.

Usage no npm install needed!

<script type="module">
  import bravobitBbFoundation from 'https://cdn.skypack.dev/@bravobit/bb-foundation';
</script>

README

@bravobit/bb-foundation

The Angular core foundation of the Bravobit team.

npm version npm license

  • Use ⌘ Command + F or ctrl + F to search for a keyword.
  • Contributions welcome, please see contribution guide.

Features

  • Easy implementation
  • Library can be consumed by Angular CLI, Webpack, or SystemJS
  • Compatibility
    • Angular Universal
    • Ahead-Of-Time compilation (AOT)
    • Lazy loading

Installation

To use bb-foundation in your project install it via npm:

$ npm install @bravobit/bb-foundation --save

Setup

import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';

import {AppComponent} from './app.component';

@NgModule({
    imports: [
        BrowserModule, 
        BrowserAnimationsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule {
}