Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-trace

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-trace

Generate Graphviz dataflow graphs for your Ember app

  • 0.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ember-trace

npm version

Generate Graphviz dataflow graphs for your Ember app.

What & Why?

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:

Example graph

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?”.

Installation

ember install ember-trace

Then download and install GraphViz.

Usage

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

History

Created as an experiment in early 2018 by the Human Interface Team at Heroku.

Keywords

FAQs

Package last updated on 27 Mar 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc