npm.io
2.3.6 • Published 3d ago

@tryghost/tpl

Licence
MIT
Version
2.3.6
Deps
0
Size
5 kB
Vulns
0
Weekly
0
Stars
37

Tpl

Install

npm install @tryghost/tpl --save

or

pnpm add @tryghost/tpl

Purpose

String templating helper for replacing {token} placeholders with runtime values.

Usage

const tpl = require('@tryghost/tpl');
messages = {
    myError: 'Something terrible happened to {something}'
};

console.error(tpl(messages.myError, {something: 'The thing'}));
  • Takes strings like 'Your site is now available on {url}' and interpolates them with passed in data
  • Will ignore double or triple braces like {{get}} or {{{content}}}
  • Can handle escaped braces e.g. \\{\\{{helpername}\\}\\}
  • There's a simple bare minimum escaping needed to make {{{helpername}}} work with interpolation e.g. {\\{{helpername}}}

Develop

This is a mono repository, managed with Nx.

Follow the instructions for the top-level repo.

  1. git clone this repo & cd into it as usual
  2. Run pnpm install to install top-level dependencies.

Run

  • pnpm dev

Test

  • pnpm lint runs oxlint
  • pnpm test runs lint and tests

Copyright (c) 2013-2026 Ghost Foundation - Released under the MIT license.