Skip to content

Instantly share code, notes, and snippets.

@rhalff
Created January 21, 2014 21:04
Show Gist options
  • Select an option

  • Save rhalff/8548368 to your computer and use it in GitHub Desktop.

Select an option

Save rhalff/8548368 to your computer and use it in GitHub Desktop.
digraph {
label="Simple file request";
http_request -> json_parse [label="out:body|in:in"];
json_parse -> json_path [label="out:out|in:json"];
json_path -> console_log [label="out:matches|in:msg"];
http_request [label="http:request"];
json_parse [label="json:parse"];
json_path [label="json:path"];
console_log [label="console:log"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment