Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
heap-profile
Advanced tools
This module adds supports for the Sampling Heap Profiler in V8. This works by taking a random sample of objects, as they are allocated, to keep a statistical sample of what is live in the heap at any given time. This also keeps track of the stack that allocated a given sampled object. This means that you know not only what is live, but what code path allocated it. This is motivated by, and functions similarly to, the heap profiler built into tcmalloc.
const heapProfile = require('heap-profile');
heapProfile.start();
// Write a snapshot to disk every hour
setInterval(() => {
heapProfile.write((err, filename) => {
console.log(`heapProfile.write. err: ${err} filename: ${filename}`);
});
}, 60 * 60 * 1000).unref();
Starts sampling. You probably want to call this as close to the program startup as possible.
Returns the profile composed of a tree of nodes (V8 format). When the optional
parameter translate
is true, the returned profile is in DevTools format.
This function is overloaded with the following variants:
function write(): Promise<string>;
function write(path: string): Promise<string>;
function write(cb: Callback): void;
function write(path: string, cb: Callback): void;
interface Callback { (err: Error|null, path?: string): void; }
Writes the current heap sample to the path specified. If the path parameter is
omitted, a file with the pattern heap-profile-${Date.now()}.heapprofile
will
be written to the current working directory.
The callback returns error if profiling was not active at the time of call. Otherwise the output file path is returned via the callback or the promise.
Stops sampling and discard the current set of tracked sampled objects. You can
call start
again to start sampling again, but any objects allocated before
start
is called cannot be sampled, which means that the profile will not
be representative of the state of the heap.
The sampling overhead is low enough that you probably don't need to use stop
.
FAQs
Support for V8's sampling heap profiler
The npm package heap-profile receives a total of 359 weekly downloads. As such, heap-profile popularity was classified as not popular.
We found that heap-profile 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.