
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
redux-behavior-subject
Advanced tools
Create simple store with behavior subject and track changes with [Redux DevTools](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en)
Create simple store with behavior subject and track changes with Redux DevTools
https://stackblitz.com/edit/rx-js-store
Install the package
npm i redux-behavior-subject
Create simple service or any class and use it like a regular rxjs BehaviorSubject for example angular service with simple store
import { Injectable } from '@angular/core';
import {ReduxBehaviorSubject} from 'redux-behavior-subject';
@Injectable()
export class StoreService {
private store = {
counter$ : new ReduxBehaviorSubject<number>(0,'counter'),
toDoList$ : new ReduxBehaviorSubject<Array<any>>([],'toDoList'),
clock$ : new ReduxBehaviorSubject<object>(null,'clock'),
};
getStore(){
return this.store;
}
}
This project is licensed under the MIT License - see the LICENSE.md file for details
FAQs
Create simple store with behavior subject and track changes by demand with [Redux DevTools](https://chrome.google.com/webstore/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd?hl=en) for better performance only when you set to debug (set session s
The npm package redux-behavior-subject receives a total of 2 weekly downloads. As such, redux-behavior-subject popularity was classified as not popular.
We found that redux-behavior-subject 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.