Socket
Socket
Sign inDemoInstall

kng2-core

Package Overview
Dependencies
11
Maintainers
1
Versions
157
Alerts
File Explorer

Advanced tools

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!


Version published
Maintainers
1
Install size
2.86 MB
Created

Readme

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

FAQs

Last updated on 13 Nov 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc