
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
ngx-scoped-library
Advanced tools
Angular library built with ❤ using ngx-library yeoman generator.
View all the directives in action at https://JoA-MoS.github.io/ngx-scoped-library
Install above dependencies via npm.
Now install ngx-scoped-library
via:
npm install --save ngx-scoped-library
Note:If you are using
SystemJS
, you should adjust your configuration to point to the UMD bundle. In your systemjs config file,map
needs to tell the System loader where to look forngx-scoped-library
:
map: {
'ngx-scoped-library': 'node_modules/ngx-scoped-library/bundles/ngx-scoped-library.umd.js',
}
Once installed you need to import the main module:
import { LibModule } from 'ngx-scoped-library';
The only remaining part is to list the imported module in your application module. The exact method will be slightly
different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()
):
import { LibModule } from 'ngx-scoped-library';
@NgModule({
declarations: [AppComponent, ...],
imports: [LibModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Other modules in your application can simply import LibModule
:
import { LibModule } from 'ngx-scoped-library';
@NgModule({
declarations: [OtherComponent, ...],
imports: [LibModule, ...],
})
export class OtherModule {
}
Copyright (c) 2018 Justin Dietz. Licensed under the MIT License (MIT)
FAQs
Angular library built with ❤ using ngx-library yeoman generator.
The npm package ngx-scoped-library receives a total of 2 weekly downloads. As such, ngx-scoped-library popularity was classified as not popular.
We found that ngx-scoped-library 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.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.