0.1.1 • Published 7 years ago

template-path v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

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-path

Usage

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


version travis downloads license follow