Skip to content

angular2 library that implement all core features of karibou.ch

Notifications You must be signed in to change notification settings

karibou-ch/kng2-core

Repository files navigation

Kng2Core (AKA King Kong II) means karibou.ch Angular 2 (>=4.1.0) kore Library 🚀

This project will provide a standalone angular2 library that implement all core features (API mapping) of karibou.ch. The module goal mainly provide a kickstart kit to make every new idea/motivation web application/ionic declinaison without friction.

David Gitter

Authors & special thanks ❤️

Install and using Karibou king kong II

First, create a new application (or use existing one)

    npm install -g @angular/cli
    ng new karibou-super-idea && cd karibou-super-idea

Next, install Karibou King Kong II :fire

    npm install kng2-core

Before using the library, you must set default configuration in your application, eg. app.component.ts

// importing King Kong II
import { IsAuthenticated, Kng2CoreModule } from 'kng2-core';

// activate routes
const appRoutes: Routes = [
  { path: 'edit/routes', canActivate: [IsAuthenticated], [...] },
  ...
];

//
// set default backend, and preload some data
const kng2Config={
  API_SERVER:'http://api.karibou.evaletolab.ch',
  loader:[
    "categories",
    "shops"
  ]
};
//
// configure King Kong II module
@NgModule({
  declarations: [
    AppComponent,
    ...
  ],
  imports: [
    BrowserModule,
    HttpClientModule,
    Kng2CoreModule.forRoot(kng2Config),
    RouterModule.forRoot(appRoutes)
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule {}

Prerequisites for development

install node.js with NVM (required).

nvm install stable # currently v9.2.0
nvm use stable

Get sources

git clone https://github.com/karibou-ch/kng2-core
cd kng2-core
npm install
npm run build:watch

Application example

cd ng-test
npm install
ng serve
chromium `http://localhost:4200/`

About

angular2 library that implement all core features of karibou.ch

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published