You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

kng2-core

Package Overview
Dependencies
Maintainers
1
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kng2-core

The module goal mainly provide a kickstart kit to make every new idea/motivation web application/ionic declinaison for karibou.ch without friction!

5.0.4
latest
Source
npmnpm
Version published
Weekly downloads
54
390.91%
Maintainers
1
Weekly downloads
 
Created
Source

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

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 :heart:

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/`

Keywords

angular

FAQs

Package last updated on 13 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts