0.0.1 • Published 8 years ago

dotbars v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

Dotbars

Use Handlebars to generate dotfiles

usage

npm install dotbars
const dotbars = require('dotbars');

const template = dotbars`
digraph G {
  {{#each list}}
    {{this}} -> t;
  {{/each}}
}
`;

console.log(template({
  deps: [
    'a1',
    'b1',
    'c1'
  ]
}));
node file.js | dot -Tpng > out.png