Konnektid / copy-template-dir

High throughput template dir writes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

copy-template-dir

NPM version build status Test coverage Downloads js-standard-style

High throughput template dir writes. Supports variable injection using the mustache {{ }} syntax.

Installation

$ npm install copy-template-dir

Usage

const copy = require('copy-template-dir')
const path = require('path.join')

const vars = { foo: 'bar' }
const inDir = path.join(process.cwd(), 'templates')
const outDir = path.join(process.cwd(), 'dist')

copy(inDir, outDir, vars, (err) => {
  if (err) throw err
  console.log('done!')
})

API

copyTemplateDir(templateDir, targetDir, vars, cb)

Copy a directory of files over to the target directory, and inject the files with variables. Takes the following arguments:

  • templateDir: The directory that holds the templates. Dotfiles need to be prepended with a _. Files are populated with variables using the {{varName}} syntax.
  • targetDir: the output directory
  • vars: An object with variables that are injected into the template files.
  • cb(err): A callback that is called on completion.

See Also

License

MIT

About

High throughput template dir writes

License:MIT License


Languages

Language:JavaScript 100.0%