
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.
The simple state machine runner. Can be used to quickly create Mealy or Moore finite state machines.
npm i fsm-vir
Full type docs are here: https://electrovir.github.io/fsm-vir Here's an example usage:
import {runFsm} from 'fsm-vir';
runFsm({
/** The initial state of the state machine. */
initState: 'start',
/** Any iterable of values to process. */
inputs: [
'a',
'b',
'c',
'd',
'e',
],
/** Calculate the next state for the current input. */
nextState({input}) {
if (input === 'b') {
return {
/** Return `nextState` to update the current state to a new value. */
nextState: 'next',
};
} else if (input === 'd') {
return {
/** Return `stop: true` to halt input processing and the state machine as a whole. */
stop: true,
};
} else {
/** Return `undefined` to not perform any state updates. */
return undefined;
}
},
/** Optionally perform actions for each processed input. */
actions: {
preNextState({input, state}) {
/** Do some action here before the next state is calculated. */
},
postNextState({input, state}) {
/** Do some action here after the next state is calculated. */
},
},
});
FAQs
The heroic finite state machine.
The npm package fsm-vir receives a total of 488 weekly downloads. As such, fsm-vir popularity was classified as not popular.
We found that fsm-vir 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.

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.