
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
flux-state
Advanced tools
Learning flux is hard, using it is cumbersome. Hopefully it will become easier with this library!
Also, learning redux is harder, so this is state library that make your life easier
The principles and guidelines supporting this Library are:
$ npm install flux-state --save
import Flux from 'flux-state';
import Flux from 'flux-state';
export const LOGOUT_EVENT = 'onLogout';
export const LOGIN_EVENT = 'onLogin';
export const SESSION_EVENT = 'onSession';
class SessionStore extends Flux.DashStore{
constructor(){
super();
// Declare an Event
this.addEvent(LOGOUT_EVENT);
// Or Declare an event with some immutable transformation logic
this.addEvent(LOGIN_EVENT, (state) => {
// Do something with the data before propagating the Event
return Object.assign(state, {"key": "value"})
});
// Or Declare an event with some plain transformation logic
this.addEvent(SESSION_EVENT, (state) => {
state.some_other_property = "Some other Data";
return Object.assign(state, {"key": "value"})
});
}
}
const sessionStore = new SessionStore();
export {sessionStore};
import React from 'react';
import {sessionStore, LOGIN_EVENT, LOGOUT_EVENT, SESSION_EVENT } from '/path/to/store';
export class View extends React.Component {
constructor(){
super();
const user = sessionStore.getState(SESSION_EVENT);
this.state = {
isLogged: !!user
}
}
componentDidMount() {
this.loginSubscription = sessionStore.subscribe(LOGIN_EVENT, (state) => {
// Do something useful with the Event Data
this.setState({some: state.some});
});
// Register some method
this.logoutSubscription = sessionStore.subscribe(LOGOUT_EVENT, this.logOutEvent().bind(this));
}
componentWillUnMount() {
// Don't forget to release the subscription
// Save time by using react bindings
// See (react-flux-state)[https://github.com/cobuildlab/react-flux-state]
this.loginSubscription.unsubscribe();
this.logoutSubscription.unsubscribe();
}
}
import Flux from 'flux-state';
import {LOGIN_EVENT, LOGIN_ERROR} from '/path/to/store';
const authenticateAction = async (username, password)=> {
// Don't forget to Validate the data ex: username !=== undefined
let dataToSave = {
authenticated: true
}
try {
await authenticate(username, password)
}catch (e) {
Flux.dispatchEvent(LOGIN_ERROR, e.message);
}
Flux.dispatchEvent(LOGIN_EVENT, dataToSave);
}
export {authenticateAction};
import React from 'react';
import {authenticateAction} from 'path/to/action';
import {sessionStore, LOGIN_EVENT, LOGOUT_EVENT, SESSION_EVENT } from '/path/to/store';
export class View extends React.Component {
constructor(){
super();
}
componentDidMount() {
const me = this;
this.loginSubscription = sessionStore.subscribe(LOGIN_EVENT, (state) => {
// Do something useful with the Event Data
me.userName = state.user.name;
});
// Register some method
this.logoutSubscription = sessionStore.subscribe(LOGOUT_EVENT, this.logOutEvent().bind(this));
}
logOutEvent(state){
//DO something with the state or the state of the Store
const storeState = sessionStore.getState(SESSION_EVENT);
}
componentWillUnMount() {
// Don't forget to release the subscription
this.loginSubscription.unsubscribe();
this.logoutSubscription.unsubscribe();
}
login(){
authenticateAction(this.state.username, this.state.password);
}
}
ChangeLog:
store.getState() returns a clone of the state objectclearState method for the Store to set all Values to nullFAQs
A Easy State Management with Flux
The npm package flux-state receives a total of 6 weekly downloads. As such, flux-state popularity was classified as not popular.
We found that flux-state 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.