1.0.1 • Published 2 years ago

@jswork/next-secret-tmpl v1.0.1

Weekly downloads
53
License
MIT
Repository
-
Last release
2 years ago

next-secret-tmpl

Secret template engine.

version license size download

installation

npm install -S @jswork/next-secret-tmpl

usage

import '@jswork/next-secret-tmpl';

const str = '${{ GITHUB_API_TOKEN }} - ${{ afei }}';
const ctx = { GITHUB_API_TOKEN: 'xxx-yyy-zzz', afei:'zhengfei' };
const res = nx.secretTmpl(str, ctx);

// xxx-yyy-zzz - zhengfei

license

Code released under the MIT license.