Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Translate symbol names generated by --basic-perf-prof
into JavaScript names
[sudo] npm i -g perf-sym
cat stacks.out | perf-sym <pid>
--relative=[path] -r=[path] [false]
--keep-addr -k [false]
--no-v8-internals --no-v8 [true]
--no-sys-internals --no-sys [false]
--no-gc-internals --no-gc [false] (--no-v8 must be false to apply)
--no-unresolved --no-ur [false]
[sudo] npm install -g stackvis
[sudo] npm install -g cpuprofilify
sudo echo # need me some sudo perms
node --perf-basic-prof index.js &
export PID=$!
(sudo profile_1ms.d -p $PID > stacks.out; kill -s INT $PID) &
npm test
sudo killall dtrace
cat stacks.out | perf-sym -r initial --no-sys $PID | stackvis perf > flamegraph.html
open flamegraph.html
[sudo] npm install -g stackvis
node --perf-basic-prof index.js &
export PID=$!
(perf record -p $PID -i -g -e cycles:u; perf script > stacks.out; kill -s INT $PID) &
npm test
killall perf; killall perf
cat stacks.out | perf-sym -r initial --no-sys $PID | stackvis perf > flamegraph.html
open flamegraph.html
FAQs
Translate symbol names generated by `--basic-perf-prof` into JavaScript names
The npm package perf-sym receives a total of 7,186 weekly downloads. As such, perf-sym popularity was classified as popular.
We found that perf-sym demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.