Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
ngx-auto-unsubscribe
Advanced tools
Class decorator that will automatically unsubscribe from observables and events
npm install ngx-auto-unsubscribe --save
import { AutoUnsubscribe } from "ngx-auto-unsubscribe";
@Component({
selector: 'inbox'
})
@AutoUnsubscribe(blacklist = [])
export class InboxComponent {
one: Subscription;
two: Subscription;
three;
constructor( private store: Redux, private renderer: Renderer, private element : ElementRef ) {}
ngOnInit() {
this.one = store.select("data").subscribe(data => // do something);
this.two = Observable.interval.subscribe(data => // do something);
this.three = this.renderer.listen(this.element.nativeElement, this.event, e => // do something)
}
// If you work with AOT this method must be present, even if empty!
// Otherwise 'ng build --prod' will optimize away any calls to ngOnDestroy,
// even if the method is added by the @AutoUnsubscribe decorator
ngOnDestroy() {
// You can also do whatever you need here
}
}
FAQs
Class decorator that automatically unsubscribes from observables and events
The npm package ngx-auto-unsubscribe receives a total of 1,858 weekly downloads. As such, ngx-auto-unsubscribe popularity was classified as popular.
We found that ngx-auto-unsubscribe 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.