-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_back.js
37 lines (33 loc) · 988 Bytes
/
index_back.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env node
/* global __dirname, process */
import program from 'commander'
import fs from 'fs'
import getStdin from 'get-stdin'
import graphlib from 'graphlib'
import gdot from 'graphlib-dot'
program
.version(JSON.parse(fs.readFileSync(__dirname + '/../package.json'))['version'])
.option('-p, --prettyprint', 'Enable pretty printing of graphlib json document')
.option('-f, --graphfile <graphfile>', 'Set graph file to parse. If none is given stdin is read')
.parse(process.argv)
var processGraph = str => {
var graph = gdot.read(str)
var json = graphlib.json.write(graph)
if (program.prettyprint) {
return JSON.stringify(json, null, 2)
} else {
return JSON.stringify(json)
}
}
if (program.graphfile) {
var str = fs.readFileSync(program.graphfile)
console.log(processGraph(str))
} else {
getStdin().then(str => {
try {
console.log(processGraph(str))
} catch (e) {
console.error('Error while processing: ', e)
}
})
}