
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
ember-trace
Advanced tools
Generate Graphviz dataflow graphs for your Ember app.
Given some templates:
app/templates/
├── application.hbs
└── components
├── x-bar.hbs
└── x-foo.hbs
Running ember trace:
ember trace app/templates/application.hbs | dot -Tpng > docs/images/example.png
Will produce something like this:
These graphs can be useful for analysing how data flows through Ember apps. Put another way, they’re a visual tool for answering questions like “where did this value come from?” and “who owns it?”.
ember install ember-trace
Then download and install GraphViz.
ember trace app/templates/my-route.hbs
This command emits the graph to stdout in Graphviz DOT format. You’ll
probably want to pipe it straight into the dot
program to generate the graph.
ember trace app/templates/my-route.hbs | dot -Tpdf > graph.pdf
Some ember-cli addons emit deprecation warnings on stdout, so you’ll want to
strip those before handing it over to dot
.
ember trace app/templates/my-route.hbs | sed 's/^DEPRECATION.*$//g' | dot -Tpdf > graph.pdf
Created as an experiment in early 2018 by the Human Interface Team at Heroku.
FAQs
Generate Graphviz dataflow graphs for your Ember app
The npm package ember-trace receives a total of 1 weekly downloads. As such, ember-trace popularity was classified as not popular.
We found that ember-trace 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
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.