New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ildug/sub-limbo

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ildug/sub-limbo

RXJS subscriptions managment

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

sub-limbo

RXJS subscriptions managment

Forget to manage all subscriptions in tour Angular component.

Installation

npm install @ildug/sub-limbo

Usage

Example:


import { Limbo } from '@ildug/sub-limbo';

...
export class SomeComponent implements OnDestroy{
    
    private subs = new Limbo();

    ...
    this.subs.oblium = observable1$.subscribe();
    this.subs.oblium = observable2$.subscribe();
    this.subs.oblium = observable3$.subscribe();
    ...

    ngOnDestroy(){ this.subs.forget() }
}

FAQs

Package last updated on 08 Nov 2020

Did you know?

Socket

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.

Install

Related posts