Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ng2-screenshot
Advanced tools
Angular screenshot in directive for screen capture.
npm install ng2-screenshot
Ng2ScreenshotModule
into the module that declares the component using ng2-screenshot:import { Ng2ScreenshotModule } from 'ng2-screenshot';
@NgModule({
declarations: [
AppComponent,
...
],
imports: [
Ng2ScreenshotModule,
...
],
bootstrap: [AppComponent]
})
export class AppModule {
}
ng2-screenshot
and ng2-screenshot-toolbox
to your template, basic.component.html
<div>
<nz-switch [(ngModel)]="isOpen" [nzCheckedChildren]="checkedTemplate"></nz-switch>
<ng-template #checkedTemplate><i nz-icon nzType="scissor"></i></ng-template>
<p></p>
<ng2-screenshot [isOpen]="isOpen" (isOpenChange)="isOpenChange($event)">
<ng2-screenshot-toolbox></ng2-screenshot-toolbox>
<nz-card >
<p>I understand that I am addressing a very sensitive topic;</p>
<p>I will probably offend many readers that will say that I am an insane troll and my views are bullshit.</p>
<p>Offending is not my objective</p>
<p>but I stand by my opinions. Of course comments are here to for you to voice your opinion</p>
<p>And yes this piece is biased by my past experiences, but that’s the value of it,</p>
<p>sharing my experiences.</p>
</nz-card>
</ng2-screenshot>
</div>
isOpen
、isOpenChange($event: boolean)
import { Component } from '@angular/core';
@Component({
selector: 'basic-demo',
templateUrl: './basic.component.html',
styleUrls: ['./basic.component.scss']
})
export class BasicDemoComponent {
isOpen = false;
isOpenChange($event: boolean) {
this.isOpen = $event;
}
}
This component implement on angular 8.0, but not test on other version.
FAQs
Angular Screenshot
We found that ng2-screenshot 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.