dotparser
dotparser copied to clipboard
Parser of GraphViz dot file format
Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...
Bumps [cached-path-relative](https://github.com/ashaffer/cached-path-relative) from 1.0.2 to 1.1.0. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
I ended up copying the dotparser grammar to my own project, since I needed to add line number information and whitespace, newline and comment nodes to the ast and I...
I can not import dot content> 256 MB due to the string limitation in V8 (according to: https://stackoverflow.com/questions/40382268/error-tostring-failed-node-js-buffer ) My code: ``` fs.readFile(argv.f, 'utf8', function(err, data) { var graph =...