
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@nwx/unsub
Advanced tools
A simple subscription clean library for Angular applications
npm i @nwx/unsub |OR| yarn add @nwx/unsub
There are three ways to track and cancel your subscriptions.
1 - Unsubcribe Manager
2 - Unsubcribe Service
3 - Unsubscribe Decorator
==================================================
1 - Auto Canceling Subscription via UnsubManager Class
UnsubManager is the simplest way to let a subscription manager simplify canceling of subscriptions. It works with Component, Directive, Pipe & Injectable provided that the user triggers the tracking and the final unsubscribing.
// in your component - Using UnsubManager
import { Component } from '@angular/core';
import { interval } from 'rxjs';
import { UnsubManager } from '@nwx/unsub';
@Component({
selector: 'home',
templateUrl: './home.component.html'
})
export class HomeComponent implements OnDestroy {
// instantiate a new subscribe manager
unsubMgr: UnsubManager = new UnsubManager();
constructor() {
// track a single subscription
this.unsubMgr.track = interval(1000).subscribe(num => console.log(`customSub1$ - ${num}`));
// track a list of subscriptions
this.unsubMgr.track = [
interval(1000).subscribe(num => console.log(`customSub2$ - ${num}`)),
interval(1000).subscribe(num => console.log(`customSub3$ - ${num}`));
]
}
ngOnDestroy() {
// unsubscribe all subscriptions
this.unsubMgr.unsubscribe();
}
}
2- Auto Canceling Subscription via UnsubService
UnsubService is a great way to let another ephemeral service to handle the canceling of subscriptions. It works with classes of type Component, Directive & Pipe.
// in your component - Using UnsubService
import { Component } from '@angular/core';
import { interval, Subscription } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { UnsubService } from '@nwx/unsub';
@Component({
selector: 'home',
// an ephemeral service instance per component instance
providers: [UnsubService],
templateUrl: './home.component.html'
})
export class HomeComponent {
customSub$: Subscription;
constructor(private unsubService: UnsubService) {
// track a single subscription
this.unsubService.track = interval(1000).subscribe(num => console.log(`customSub1$ - ${num}`));
// track a list of subscriptions
this.unsubService.track = [
interval(1000).subscribe(num => console.log(`customSub2$ - ${num}`)),
interval(1000).subscribe(num => console.log(`customSub3$ - ${num}`));
]
// automatically gets cleaned up by UnsubService's OnDestroy
interval(3000)
.pipe(takeUntil(this.unsub.destroy$))
.subscribe(num => console.log(`takeUntil - ${num}`));
}
}
3 - Auto Canceling Subscription Decorator
@Unsubscribable() is a great way to enhance a class to better handle the canceling of subscriptions. It works with classes of type Component, Directive, Pipe & Injectable. The decorated class must also implement OnDestroy even if unused. Note: Do not use @Unsubscribable() with Injectable services that set the providedIn option.
// in your component - Using Unsubscribable
import { Component, OnDestroy } from '@angular/core';
import { interval, Subscription } from 'rxjs';
import { Unsubscribable } from '@nwx/unsub';
@Component({
selector: 'home',
templateUrl: './home.component.html'
})
@Unsubscribable()
export class HomeComponent implements OnDestroy {
customSub$: Subscription;
constructor() {
// must keep a reference to our subscription for automatic cleanup
this.customSub$ = interval(1000).subscribe(num => console.log(`customSub$ - ${num}`));
}
// required even if unused. This is to prevent AOT tree shake ngOnDestroy of the decorated class
ngOnDestroy() {}
}
Auto Canceling Subscription Decorator (w/ takeUntil)
// in your component - Using Unsubscribable
import { Component, OnDestroy } from '@angular/core';
import { interval } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { Unsubscribable } from '@nwx/unsub';
@Component({
selector: 'home',
templateUrl: './home.component.html'
})
@Unsubscribable({
// property used by takeUntil() - use destroy$ or any custom name
takeUntilInputName: 'destory$'
})
export class HomeComponent implements OnDestroy {
// This is used in takeUntil() - @Unsubscribable will manage it internally
destroy$ = new Subject<boolean>();
constructor() {
// decorated class will trigger an auto clean up
interval(3000)
.pipe(takeUntil(this.destroy$))
.subscribe(num => console.log(`takeUntil - ${num}`));
}
// required even if unused. This is to prevent AOT tree shake ngOnDestroy of the decorated class
ngOnDestroy() {}
}
Auto Canceling Subscription Decorator (w/ Includes)
// in your component - Using Unsubscribable
import { Component, Input, OnDestroy } from '@angular/core';
import { interval, Subject, Subscription } from 'rxjs';
import { takeUntil } from 'rxjs/operators';
import { Unsubscribable } from '@nwx/unsub';
@Component({
selector: 'home',
templateUrl: './home.component.html'
})
@Unsubscribable({
// specific subscription names to be auto canceled, everything else is ignored
includes: ['customSub$']
})
export class HomeComponent implements OnDestroy {
// this is not our subscription, so we don't include it for auto clean up
@Input() notOurSub$: Subscription;
// this is our subscription and we include it for auto clean up
customSub$: Subscription;
constructor() {
// decorated class auto clean this up
this.customSub$ = interval(1000).subscribe(num => console.log(`customSub$ - ${num}`));
}
// required even if unused. This is to prevent AOT tree shake ngOnDestroy of the decorated class
ngOnDestroy() {}
}
Auto Cancelling Subscription Decorator (w/ Excludes)
// in your component - Using Unsubscribable
import { Component, Input, OnDestroy } from '@angular/core';
import { interval, Subscription } from 'rxjs';
import { Unsubscribable } from '@nwx/unsub';
@Component({
selector: 'home',
templateUrl: './home.component.html'
})
@Unsubscribable({
// subscription names not to be auto canceled, every other subscription will be clean up
excludes: ['notOurSub$']
})
export class HomeComponent implements OnDestroy {
// this is not our subscription, so we exclude it from auto clean up
@Input() notOurSub$: Subscription;
// this is our subscription and it will be automatically cleaned up
customSub$: Subscription;
constructor() {
this.customSub$ = interval(1000).subscribe(num => console.log(`customSub$ - ${num}`));
}
// required even if unused. This is to prevent AOT tree shake ngOnDestroy of the decorated class
ngOnDestroy() {}
}
To run the tests against the current environment:
npm run ci:all
Released under a (MIT) license.
X.Y.Z Version
`MAJOR` version -- making incompatible API changes
`MINOR` version -- adding functionality in a backwards-compatible manner
`PATCH` version -- making backwards-compatible bug fixes
FAQs
A simple subscription clean up library for Angular applications
We found that @nwx/unsub 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
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.