Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kamataryo/vargraph


https://github.com/kamataryo/vargraph

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

# @kamataryo/vargraph

[![Build Status](https://travis-ci.org/kamataryo/vargraph.svg?branch=master)](https://travis-ci.org/kamataryo/vargraph)
A simple JavaScript variable analyzer.

# usage

## JavaScript library

```javascript
import vargraph from '@kamataryo/vargraph'

const code = `
const a = 1
const b = a + 1
`

vargraph(code)
// {
// a: { incomes: ['b'], outcomes: [] },
// b: { incomes: [], outcomes: ['a'] }
// }
```

## CLI

```shell
$ npx @kamataryo/vargraph path/to/code.js
```