Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debitoor/asp-dependency-graph
Visualizing ASP dependencies via neo4j
https://github.com/debitoor/asp-dependency-graph
Last synced: 12 days ago
JSON representation
Visualizing ASP dependencies via neo4j
- Host: GitHub
- URL: https://github.com/debitoor/asp-dependency-graph
- Owner: debitoor
- License: mit
- Created: 2015-09-09T10:34:29.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-11T12:11:02.000Z (about 9 years ago)
- Last Synced: 2024-04-14T22:47:36.416Z (7 months ago)
- Language: JavaScript
- Size: 269 KB
- Stars: 0
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
asp-dependency-graph
====================Visualizing ASP dependencies via neo4j. The tracked dependencies are included
files, ASP functions and what called said functions. [See the wiki for more detailed documentation](https://github.com/debitoor/asp-dependency-graph/wiki).How to install
--------------1. Install [neo4j](http://neo4j.com) and host a local server.
2. Install [node.js](https://nodejs.org).
3. Check out the code.
4. Run `npm install`.How to use
----------Start by running the tests (`npm test`). This should show that node.js and
dependencies are installed correctly.Then run `npm run analyze -- > ` to output
the result into a file.To upload the file into neo4j, run `npm run upload -- `.
This can easily take 3 mins. It is currently hardcoded against neo4j running on
`localhost:7474` without authentication.Note: If you are running node.js prior to v. 0.12, `npm` does not support the
`--` to separate arguments to the script. Instead, use
`babel-node --stage=0 index.js analyze > `
and `babel-node --stage=0 index.js upload ` respectively.