
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.
You create modules of rules with no state. You spawn a process (not an actual process yet) that can be sent messages.
// from the bank_account_example in the tests directory
// BankAccount is the module
// receive is BankAccount.receive
// - type: message -> state -> state
// - it gets passed the message and the current state
// - it returns the new state
// [] is the initial (seed) state
let account = spawn(BankAccount, "receive", [])
send(account, ["deposit", 50]) // send account a message of deposit 50
send(account, ["withdraw", 30]) // send account a message of withdraw 30
// pid_of_other_process will be sent ["balance", 20]
send(account, ["check_balance", pid_of_other_process])
In Test Directory
send asyncsend concurrentkeanu is Copyright (c) 2015 James Hunter @cccc00 and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.
FAQs
Attempt at the Actor Model in javascript
We found that keanu 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.