0.0.7 • Published 4 years ago

@btcraft/genesis v0.0.7

Weekly downloads
9
License
MIT
Repository
gitlab
Last release
4 years ago

GENESIS - Never write same thing again

Ready to use Component and Modules Library for Angular 2+

Features

  • UX Modules
  • Security Module

Usage

  • Client: - ng new client - Install UX dependencies
cd client && npm install  @angular/animations @angular/cdk @angular/material hammerjs ng-material-multilevel-menu material-design-icons @angular/flex-layout
  • Install state management - it's needed for Security Module
npm install @ngrx/store @ngrx/entity @ngrx/effects --save
  • install @bitcraft/genesis
npm i @btcraft/genesis --save
  • Make your main NgModule look like:
import { ModuleWithProviders, NgModule } from '@angular/core';
import { FlexLayoutModule } from '@angular/flex-layout';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { RouterModule, Routes } from '@angular/router';
import { UxModule } from '@btcraft/genesis/dist/ux';
import { EffectsModule } from '@ngrx/effects';
import { StoreModule } from '@ngrx/store';
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
import { environment } from '../environments/environment';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
export const routes: Routes = [
  {
    path: 'security',
    loadChildren: () =>
      import('@btcraft/genesis/dist/security').then(
        m => m.SecurityModule
      )
  }
];

const ModuleRouting: ModuleWithProviders = RouterModule.forRoot(routes);
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    UxModule,
    FlexLayoutModule,
    ModuleRouting,
    StoreModule.forRoot({}),
    EffectsModule.forRoot([]),
    StoreDevtoolsModule.instrument({
      maxAge: 25, // Retains last 25 states
      logOnly: environment.production, // Restrict extension to log-only mode
    }),
    BrowserAnimationsModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
  • Add styles to your angular json
            "styles": [
              "node_modules/@btcraft/genesis/dist/_theme.scss",
            ],