
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.
reactotron-apisauce
Advanced tools
Converts responses sent via apisauce into Reactotron.
npm i --save-dev reactotron-apisauce
# or
yarn add -D reactotron-apisauce
In the file that you create your Redux store, add these two imports at the top:
// in your reactotron config (where you setup Reactotron) add this as a plugin.
import tronsauce from "reactotron-apisauce"
// then plug it in when you configure Reactotron.
Reactotron.configure()
.use(tronsauce()) // <-- here we go!!!
.connect()
// meanwhile, in a different file, when you get a response back
// from apisauce, pass it `Reactotron.apisauce(myAwesomeResponse)`
Reactotron.apisauce(theResponseWeJustTalkedAbout)
// Apisauce has a feature where you can attach a handler to watch
// all requests/response flowing through your api. You can hook this up:
api.addMonitor(Reactotron.apisauce)
// or if you just wanted to track on 500's
api.addMonitor((response) => {
if (response.problem === "SERVER_ERROR") Reactotron.apisauce(response)
})
// see https://github.com/infinitered/apisauce for more details.
FAQs
A Reactotron plugin for Apisauce.
The npm package reactotron-apisauce receives a total of 2,121 weekly downloads. As such, reactotron-apisauce popularity was classified as popular.
We found that reactotron-apisauce demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 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
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.