Pope is a fast, minimal and micro template engine for strings only, it plays well where you want to embed micro templates inside your module.
Upgrading from 1.x.x
The version 2.0.x has a breaking change, wherepope is not the default export, instead exported as a property on the object.
const pope = require('pope')
const { pope } = require('pope')
const { pope } = require('pope')
pope('There are {{count}} emails in your inbox', [20])const { pope } = require('pope')
pope('My name is {{profile.name}} and age is {{profile.age}}', ['Bob', 26])const { pope } = require('pope')
pope('There are {{0}} emails in your inbox', [20])