
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
kng2-core
Advanced tools
The module goal mainly provide a kickstart kit to make every new idea/motivation web application/ionic declinaison for karibou.ch without friction!
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.
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 {}
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
cd ng-test
npm install
ng serve
chromium `http://localhost:4200/`
FAQs
The module goal mainly provide a kickstart kit to make every new idea/motivation web application/ionic declinaison for karibou.ch without friction!
The npm package kng2-core receives a total of 54 weekly downloads. As such, kng2-core popularity was classified as not popular.
We found that kng2-core demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.