npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

text-template-forked

v1.0.7

Published

Tokenize any texts and render with data ( less than 2KB )

Downloads

4

Readme

On this page

CONTENTS

1. Download

npm install @master/text-template

CDN

Usage

Getting start

import { TextTemplate } from '@master/text-template';

Behaviors of default options

const template = new TextTemplate(text);

equal to

const template = new TextTemplate(text, {
    start: '{{',
    end: '}}',
    behavior: '', // replace
    language: '', // /* data */ /* */,
    removeOnError: false,
    delimiter: ' ',
});

Replace with data tokens

const template = new TextTemplate('Hi {{ username }}');
const renderedText = template.render({ username: 'Aron' });

output renderedText:

Hi Aron

Insert with slot tokens

const html = `
    <title>
        <!-- title --><!-- -->
    <title>
`;
const template = new TextTemplate(html, {
    behavior: 'slot',
    language: 'html'
});
const renderedHtml = template.render({ title: 'Hello World' });

output renderedHtml:

<title>
    <!-- title -->Hello World<!-- -->
<title>

The slot token isn't removed, which means you can keep result and render multiple times.

Combo above behaviors

const readmeText = `
    # Hi {{ username }}
    <!-- description --><!-- -->
`;

const data = {
    username: 'Aron',
    description: 'Hello World {{ username }}'
}

// 1. Insert
const slotTemplate = new TextTemplate(readmeText, {
    behavior: 'slot',
    language: 'readme'
});

// 2. Replace
const template = new TextTemplate(slotTemplate.render(data));

const renderedReadmeText = template.render(data);

output renderedReadmeText:

# Hi Aron
<!-- description -->Hello World Aron<!-- -->

Custom start and end token

const template = new TextTemplate('Hi ${ username }', {
    start: '${',
    end: '}'
});

Tokenize with js syntax

const data = {
    people:  ['Aron', 'Joy']
}
const text = `/* people.join(' ❤️ ') */ /* */`;
const template = new TextTemplate(text);
const renderedText = template.render(data);

output renderedText

/* people.join(' ❤️ ') */ Aron ❤️ Joy /* */

Remove token when errors occur

removeOnError: true

const text = 'Hi {{ username }}, welcome.';
const data = {};
const t1 = new TextTemplate(text);
const t2 = new TextTemplate(text, { removeOnError: true });
const r1 = t1.render(data);
const r2 = t2.render(data);

output r1

Hi {{ username }}, welcome.

output r2

Hi , welcome.

Custom identification delimiter

default

const template = new TextTemplate(html, {
    behavior: 'slot',
    language: 'html'
});
<title><!-- name -->text-template<!----></title>

custom

const template = new TextTemplate(html, {
    behavior: 'slot',
    language: 'html',
    delimiter: ' / ' 
});
<title><!-- name --><!-- / --></title>

Options

The default values of all options are undefined, and each has a default behavior.

  • start Default {{. Replace or slot start token
  • end Default }}. Replace or slot end token
  • behavior Default replace. Specify render behavior
  • language Required behavior: 'slot'. Specify using comment language to set start and end quickly.
    • '' relative to /* data */ /* */ as default
    • 'html', readme relative to <!-- data --> <!-- -->
    • 'pascal' relative to (* data *) (* *) or { data } { }
    • 'forth' relative to ( data ) ()
    • 'haskell' relative to {- data -} {- -}
  • delimiter Default . Required behavior: 'slot'. Specify middle delimiter for identifying end
  • removeOnError Default false. If true, the token will be removed when the data doesn't match or js syntax go wrong.