tsviz-cli

2.0.3 • Public • Published

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");
...

Readme

Keywords

none

Package Sidebar

Install

npm i tsviz-cli

Weekly Downloads

5

Version

2.0.3

License

MIT

Unpacked Size

103 kB

Total Files

20

Last publish

Collaborators

  • joaoneves