
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.
@alexmerced/simplerpc-client
Advanced tools
npm install @alexmerced/simplerpc-client
The SimpleRPC framework is a framework for creating very simple lightweight RPC APIs for use with any backend or frontend framework with a redux/useReducer like API.
Actions take the signature of
(payload: Object, context: Object) => response:Any
The client function then can be called like so:
rpcDispatch({type: "actionName", payload: {arg1: 1, arg 2: "hello"}})
import {createClient} from "simplerpc-client"
const rpcDispatch = createClient({
url: "http://localhost:4000/rpc",
headers: {
"authorization": "..."
}
})
export default rpcDispatch
Then assuming your server is setup with @alexmerced/simplerpc-server at the specific endpoint you can make rpc calls like so.
await rpcDispatch({type: "createTodo", payload: {
message: "Lunch"
}})
FAQs
`npm install @alexmerced/simplerpc-client`
The npm package @alexmerced/simplerpc-client receives a total of 15 weekly downloads. As such, @alexmerced/simplerpc-client popularity was classified as not popular.
We found that @alexmerced/simplerpc-client 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.