Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

zhi

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zhi

a key/value parser support simple template

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Zhi

a key/value parser support simple template

Build Status Coverage Status

Install

$ npm install zhi

Usage

You can use zhi resolve parameter of dependency.

var zhi = require('zhi');
zhi({
  a: '{{b}}/{{c}}',
  b: '123',
  c: '{{d}}',
  d: 'abc'
})

return

{
  a: '123/abc',
  b: '123',
  c: 'abc',
  d: 'abc'
}

You can change tagName with tagStart and tagEnd.

zhi(obj, {
  tagStart: '<%',
  tagEnd: '%>'
});

You can use extra data with mixin option

var options = {
  mixin: {
    'x': '1',
    'y': '2',
    'z': '3'
  }
};
zhi({
  a: '{{b}}/{{c}}',
  b: '{{x}}{{y}}{{z}}',
  c: '{{d}}',
  d: 'abc'
}, options);

return

{
  a: '123/abc',
  b: '123',
  c: 'abc',
  d: 'abc'
}

LISENCE

MIT

FAQs

Package last updated on 08 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts