JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4860
  • Score
    100M100P100Q120745F
  • License MIT

simplest template engine

Package Exports

  • rendy

Readme

Rendy License NPM version Dependency Status Build Status Coverage

Simple template engine compatible with handlebars and mustache.

Install

NPM_INFO

npm i rendy

How to use?

const rendy = require('rendy');
const tmpl = 'hello {{ who }}';
const who = 'world';

rendy(tmpl, {
    who
});
// returns
'hello world'

License

MIT