
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@abasb75/state-manager
Advanced tools
@abasb75/state-manager is a great and best state manager tools for your javascript web applications.
localstoragestate or defined actionnpm i @abasb75/state-manager --save
initial value for passing to store's object:
interface StateType {
darkMode:boolean;
counter:number;
notes:{
text:string;
date:number;
}[];
}
const initialState:StateType = {
darkMode:false,
counter:0,
notes:[],
}
actions:
const actions = {
toggleDarkMode:(state:StateType)=>{
return {
...state,
darkMode:!state.darkMode,
};
},
counter:{
increment:(state:StateType)=>{
return {
...state,
counter:state.counter+1,
}
},
decrement:(state:StateType)=>{
return {
...state,
counter:state.counter-1,
}
},
},
notes:{
add:(state:StateType,text:string):StateType=>{
console.log('add worked!')
return {
...state,
notes:[
...state.notes,
{
text:text,
date:Date.now(),
}
]
}
},
delete:(state:StateType,id:number):StateType=>{
return {
...state,
notes:state.notes.filter(n=>n.date!==id),
}
},
}
}
import { createStore } from "@abasb75/state-manager";
...
const initialState:StateType = {
...
}
const actions = {
...
}
const store = createStore({
initialState,
actions,
storgable:true, // if storagble sets true, states saved on localstorage
storageKey:'mystorage',
});
export default store;
import store from './store';
get method:
const state = store.get(); //return state
...
const state = store.get(state=>state.counter); //return counter value
set method:
store.set({
counter:0;
}).then(state=>{
console.log(state.counter);
});
actions:store.getActions().counter.increment();
subscribe state changes:const unsubscribe = (state)=>{
console.log(state);
}
// subscribe return itself unsubscribe
unsubscribe();
// alternative for get subscriber:
const subscribeId = store.addSubscriber((state)=>{
console.log(state);
});
// and unsubscribe with subscribeId:
store.unsubscribe(subscribeId);
@abasb75/react-state-manager is an extention to use this package in react.
FAQs
a javascript powerfull state manager
We found that @abasb75/state-manager demonstrated a healthy version release cadence and project activity because the last version was released less than 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 software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.