Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@lakea/gravity-svg-adapter-svg-injector
Advanced tools
An adapter for `GrSvg` using [`svg-injector`](https://github.com/tanem/svg-injector) as implementation.
An adapter for GrSvg
using svg-injector
as implementation.
Install the library using NPM:
npm install @lakea/gravity-svg-adapter-svg-injector @tanem/svg-injector --save
Next, create a new file, svg-adapter-root.module.ts
which exposes an Angular's module with a default configuration.
import {NgModule} from '@angular/core';
import {GrSvg} from '@lakea/gravity/ui';
import {GrSvgAdapterSvgInjector} from '@lakea/gravity-svg-adapter-svg-injector';
@NgModule({
providers: [
{
provide: GrSvg,
useClass: GrSvgAdapterSvgInjector,
},
],
})
export class SvgAdapterRootModule {}
Import SvgAdapterRootModule
to application root module like app.module.ts
.
You should import the SvgAdapterRootModule once in your root module.
The SvgAdapterRootModule
provide the adapter implementation for GrSvg
.
Create your adapter implementation class extending GrSvg
abstraction:
import {Injectable, Renderer2, RendererFactory2} from '@angular/core';
import {GrSvg} from '@lakea/gravity/ui';
@Injectable()
export class GrSvgAdapter extends GrSvg {
constructor() {
super();
}
public generateSvg(assetUrl: string): Promise<SVGSVGElement> {
// YOUR IMPLEMENTATION
}
}
So, provide it on your application root module (maybe app.module.ts
), like this:
providers: [
{
provide: GrSvg,
useClass: GrSvgAdapter,
}
]
FAQs
An adapter for `GrSvg` using [`svg-injector`](https://github.com/tanem/svg-injector) as implementation.
We found that @lakea/gravity-svg-adapter-svg-injector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.