Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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
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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.