2.0.3 • Published 2 years ago

tsviz-cli v2.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

tsviz

npm npm

This simple tool creates a UML diagram from typescript modules.

diagram

Installation

npm install -g tsviz-cli

You also need to install GraphViz, including correctly added it to your PATH.

Usage

Cli

tsviz-cli <switches> <sources filename/directory> <output.png>

Available switches:
  -d, dependencies: produces the modules dependencies diagram
  -svg: output an svg file

In order to create a diagram for an entire project you simply type:

tsviz-cli samples/ diagram.png

Library

You may also consume tsviz npm library in your project to obtain a digest of modules, classes, methods, etc, of a given typescript project.

npm install tsviz
import { getModules } from "tsviz";

const modules = getModules("path/where/your/tsconfig/lives");
...
2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago