
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
stated-bean
Advanced tools
A light but scalable state management library with react hooks.
It is the ViewModel in the MVVM.
# yarn
yarn add stated-bean
# npm
npm i stated-bean
GitHub Pages: Integration with injection-js
import { useBean } from 'stated-bean';
const CounterModel = {
count: 0,
decrement() {
this.count--;
},
increment() {
this.count++;
},
};
function CounterDisplay() {
const counter = useBean(() => CounterModel);
return (
<div>
<button onClick={counter.decrement}>-</button>
<span>{counter.count}</span>
<button onClick={counter.increment}>+</button>
</div>
);
}
import { StatedBean, Stated useBean } from 'stated-bean';
@StatedBean()
class CounterModel {
@Stated()
count = 0;
increment() {
this.count++;
}
decrement() {
this.count--;
}
}
function CounterDisplay() {
const counter = useBean(CounterModel);
return (
// ...
);
}
StatedBean
Signature: @StatedBean(name?: string | symbol): ClassDecorator
Indicates that an annotated class is a StatedBean
. The name
may indicate a suggestion for the bean name. Its default value is Class.name
.
Stated
Signature: @Stated(): PropertyDecorator
Indicates that an annotated property is Stated
. Its reassignment will be observed and notified to the container.
AfterProvided
Signature: @AfterProvided(): MethodDecorator
The AfterProvided
decorator is used on a method that needs to be executed after the StatedBean
be instanced to perform any initialization.
Effect
Signature: @Effect(name?: string | symbol): MethodDecorator
The Effect
decorator is used on a method that can get the execution state by useObserveEffect
.
useBean
Signature: useBean<T>(typeOrSupplier: ClassType<T> | () => T, name?: string | symbol): T
The useBean
will create an instance of the stated bean with a new StatedBeanContainer
and listen for its data changes to trigger the re-rendering of the current component.
useInject
Signature: useInject<T>(type: ClassType<T>, option: UseStatedBeanOption<T> = {}): T
The useInject
will get the instance of the stated bean from the StatedBeanContainer
in the context and listen for its data changes to trigger the re-rendering of the current component.
UseStatedBeanOption
option = {
name: string | symbol; // get/create the instance with special name
dependentFields: Array<string | symbol>; // do re-render when the special property changed
};
useObserveEffect
Signature: useObserveEffect(bean: StatedBeanType, name: string | symbol): EffectAction
observe the execution state of the method which with @Effect
.
@StatedBean
class UserModel {
@Effect()
fetchUser() {
// ...
}
}
const UserInfo = () => {
const model = useBean(() => new UserModel());
const { loading, error } = useObserveEffect(model, 'fetchUser');
// ...
};
<StatedBeanProvider {...props: StatedBeanProviderProps} />
The StatedBeanProvider
is responsible for creating an instance of the stated bean and dispatching an event after data changes.
StatedBeanProviderProps
interface StatedBeanProviderProps {
types?: ClassType[];
beans?: Array<StatedBeanType<unknown>>;
beanProvider?: BeanProvider;
application?: StatedBeanApplication;
}
FAQs
A light but scalable state management library with react hooks
The npm package stated-bean receives a total of 0 weekly downloads. As such, stated-bean popularity was classified as not popular.
We found that stated-bean demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.