shaky
v0.15.0
Published
This version is a command line version and can convert from ascii text to png.
Downloads
26
Readme
shaky
Shaky is a awesome shaky box-and-lines ASCII art diagramming tool. You can generate the diagram from ASCII. All code are compiled from coffee script which port from moe-js.
Dependencies
Because shaky uses node-canvas
to draw the diagram, we need to install some dependencies for node-canvas
.
This page introduces many installations in different system.
You can follow these manuals and start to install!
Install
npm install -g shaky
Usage
shaky -i ascii.txt -o diagram.png
Notice: The program only supports the png
file extension.
If you want to write ascii.txt
file, the following content will be a good example.
+------------+ +------------+
| | | |
| CONTEXT |<-+ | CONTEXT |<-+
| | | | | |
+------------+ | +------------+ |
| |
+------------+ | +------------+ |
| getY | | | getY | |
| | | | | |
| *------+--+ | *------+--+
| | | | | |
+------------+ | +------------+ |
| |
+------------+ | +------------+ |
| getX | | | getX | |
| | | | | |
| *------+--+ | *------+--+
| | | | | |
+------------+ | +------------+ |
| |
+------------+ | +------------+ |
| getSum | | | getSum | |
| | | | | |
| *------+--+ | *------+--+
| * | | * |
+-----+------+ +-----+------+
| |
+----------+-------+
|
v
+--------------------+
| SharedFunctionInfo|
| * |
+----------+---------+
|
v
+--------------------+
| unoptimized Code |
| |
??? <--+---* getX call |
| |
??? <--+---* getY call |
| |
+--------------------+
This is the output.