
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.
rxjs-devtools
Advanced tools
rxjs-devtools is a debugging library for RxJS.
The usual approach to debugging RxJS-based code involves sprinkling tap operators and logging throughout composed observables. That's something that I find tedious, so I wrote this library and implemented an unobtrusive mechanism for identifying observables and logging and inspecting observable subscriptions.
If you, too, are looking for a less painful RxJS debugging experience, you might find this library useful.
Install the package using NPM:
npm install rxjs-devtools --save-dev
And import the functions for use with TypeScript or ES2015:
import { patch } from "rxjs-devtools";
const patcher = patch();
Or require the module for use with Node or a CommonJS bundler:
const { patch } = require("rxjs-devtools");
const patcher = patch();
Or include the UMD bundle for use as a script:
<script src="https://unpkg.com/rxjs@6/bundles/rxjs.umd.min.js"></script>
<script src="https://unpkg.com/rxjs-devtools@0/bundles/rxjs-devtools.umd.min.js"></script>
<script>
const { patch } = rxjsDevTools;
const patcher = patch();
</script>
FAQs
A debugging library for RxJS
We found that rxjs-devtools 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.