Skip to content

afeiship/next-secret-tmpl

Repository files navigation

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.