Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 925 Bytes

README.md

File metadata and controls

46 lines (28 loc) · 925 Bytes

pumlToPng

Small script to convert puml to png in same folder.

All .puml files inside the working directory and all sub folders are converted into .png files, by requesting a plantuml server.

By default the http://www.plantuml.com/plantuml is requested for conversion.

Usage

Install as global tool with:

npm install -g puml-to-png

Now in any folder with ".puml" files execute:

puml-to-png

Or if you have a custom plantuml server running:

puml-to-png --url http://mylocalplantumlserver

Integration in Build Tools

You an use something like:

const { transform } = require("puml-to-png/transform");

const server = "http://mylocalplantumlserver";
const directory = "/path/to/plantumlfiles";

transform(server, directory);

To integrate the transformation into your build process.

License

Licensed as Apache-2.0