
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@fikani/ngx-pubsub
Advanced tools
This library helps people to use a simple Publisher/Subscriber module taking advantage of the rxjs/Observable api poresent in Angular 2+.
This library helps people to use a simple Publisher/Subscriber module taking advantage of the rxjs/Observable api poresent in Angular 2+.
To install this library, run:
$ npm install @fikani/ngx-pubsub --save
Add the PubSubModule
to your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { PubSubModule } from '@fikani/ngx-pubsub';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify your library as an import
PubSubModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once it is imported, you can use the subscribe
decorator in your Angular components:
import { Component, OnInit } from '@angular/core';
import { subscribe } from '@fikani/ngx-pubsub';
@Component({...})
export class MyComponent {
@subscribe("test")
myMethod(data) {
console.log("comp1 : " + data)
}
}
Don't worry about unsubscribing the observables on components, it is done under the hood by using the component's lifecyle hooks.
You also have to emit the notification to the observers. To do so, use the SubscriptionService
:
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/interval';
import { SubscriptionService } from '@fikani/ngx-pubsub';
@Injectable()
export class PublisherService {
test$ = this.sub.subject("test").subscribe((data) => {
console.log("service: " + data);
})
constructor(private sub: SubscriptionService) {
//example
Observable.interval(1000).subscribe(n => {
this.sub.emit("test", n)
})
}
}
MIT © Afif Fikani
FAQs
## About
The npm package @fikani/ngx-pubsub receives a total of 10 weekly downloads. As such, @fikani/ngx-pubsub popularity was classified as not popular.
We found that @fikani/ngx-pubsub 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.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.