Skip to content

jessebluemr/pumlToPng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Small script to convert puml to png in same folder

Resources

License

Stars

Watchers

Forks

Packages

No packages published