0.1.1 • Published 9 years ago
template-path v0.1.1
template-path
Resolve template string as a path
const path = require('template-path')
const project = path`${process.env.HOME}/jamen/template-path`
// => /home/jamen/jamen/template-path/Installation
$ npm install --save template-pathUsage
path tag function
path is a template string tag you use to normalize them as paths:
// Join paths together
const example1 = path`foo/${bar}/baz.json`
// Use functions in the middle of your paths
const example2 = path`${os.tmpdir()}/my-project/${uuid()}.svg`
// Deal with file extensions
const example3 = path`${__dirname}/${name}.${ext}`License
MIT © Jamen Marz