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

@customcommander/tagtical

v3.0.0

Published

Tagged templates to enhance your text processing experience

Downloads

5

Readme

tagtical

npm i @customcommander/tagtical

npm version

Why?

Say you're given a number n and depending on its value you return either "There is 1 fox" or "There are 10 foxes".

Here's a typical implementation:

`There ${n === 1 ? 'is' : 'are'} ${n} ${n === 1 ? 'fox' : 'foxes'}`

Simple enough yet already difficult to parse and the intent is obfuscated.

Perhaps this reads better?

import {pluralize} from '@customcommander/tagtical';

pluralize`There is/are ${1} fox(es)`;
//=> "There is 1 fox"

pluralize`There is/are ${10} fox(es)`;
//=> "There are 10 foxes"

If you find yourself nodding along, then maybe tagtical is for you.

Design philosophy

If an interpolated value is not of the expected type, it is returned as is. This means that you can always apply a tagged template without worrying about types:

import {lower} from '@customcommander/tagtical';

lower`I only had ${1} ${'BURRITO'}!`;
//=> "I only had 1 burrito!"

Documentation

  • defaults - Replace an empty value with a default value
  • hide - Hides interpolated values
  • list - Textual representation of an array
  • lower - Lowercase interpolated values
  • pluralize - Choose between singular or plural forms.
  • time - Format dates within a string.
  • trim - Trim interpolated values
  • upper - Uppercase interpolated values

defaults

The default value for an empty interpolated value is defined in the string template itself. It is separated by a single / character. e.g. ${name}/guest.

A value is considered empty if it is:

  • null
  • undefined
  • An empty string ''
  • An empty array []
  • An empty object {}
  • A number that is either 0 or NaN

When the default value is used, the separator (i.e. the / character) is removed from the string.

When the interpolated value is not empty, the default value (and the separator) is removed from the string.

import {defaults} from '@customcommander/tagtical';

defaults`Hi ${''}/guest, you have ${undefined}/no new emails`;
//=> "Hi guest, you have no new emails"

defaults`Hi ${'John'}/guest, you have ${10}/no new emails`;
//=> "Hi John, you have 10 new emails"

(The defaults tag does not have any options.)

hide

The hide tag replaces all interpolated values with a default mask 'xxx':

import {hide} from '@customcommander/tagtical';

hide`Hi ${'John'}, your credit card number is ${'1234-2345-3456-4567'}`
//=> "Hi xxx, your credit card number is xxx"

Options:

  • mask (default 'xxx')

    The string to use to replace an interpolated value.

    hide({mask: '???'})`Your name is ${name} and you are ${age} old`;
    //=> "Your name is ??? and you are ??? old"
  • fill (default false)

    When set to true, the mask will cover the entire space that the interpolated value would have taken otherwise.

    Please note that if the interpolated value isn't a string, it will be converted into one via a call to String().

    hide`Your name is ${'John'} and you live in ${'Manchester'}`;
    //=> "Your name is xxx and you live in xxx"
    
    hide({fill: true})`Your name is ${'John'} and you live in ${'Manchester'}`;
    //=> "Your name is xxxx and you live in xxxxxxxxxx"

list

All items in the list are joined with ', ' except for the last two items that are joined with ' and '.

import {list} from '@customcommander/tagtical';

const arr = ['Huey', 'Dewey', 'Louie'];
list`Hey ${arr}!`;
//=> "Hey Huey, Dewey and Louie!"

Options:

  • delim (default ', ')

    The string to use to join all items expect the last.

    const arr = ['Huey', 'Dewey', 'Louie'];
    list({delim: '; '})`Hey ${arr}!`;
    //=> "Hey Huey; Dewey and Louie!"
  • delimlast (default ' and ')

    The string to use to join the last two items.

    const arr = ['Huey', 'Dewey', 'Louie'];
    list({delimlast: ' & '})`Hey ${arr}!`;
    //=> "Hey Huey, Dewey & Louie!"

lower

Lowercase all interpolated values if they are strings. Non-string values are left as is.

import {lower} from '@customcommander/tagtical';

lower`I had ${'BREAD'}, ${'BEANS'} and ${'COVFEFE'} for breakfast`
//=> "I had bread, beans and covfefe for breakfast"

(The lower tag does not have any options.)

pluralize

The pluralize tag allows you to build the "template" of a sentence without having to deal with the logic of choosing between singular or plural forms.

e.g. given "There is/are ${n} fox(es) and ${m} wolf/wolves"

The pluralize tag scans the string from left to right and picks forms depending on the value of the nearest interpolated value.

Forms are separated by a / character with the singular form first and the plural form last. e.g. is/are.

When both forms share the same root e.g. fox/foxes an abbreviated notation can also be used: fox(es).

import {pluralize} from '@customcommander/tagtical';

pluralize`There is/are ${10} fox(es)`
//=> "There are 10 foxes"

pluralize`There is/are ${0} fox(es)`
//=> "There are 0 foxes"

pluralize`There is/are ${1} fox(es)`
//=> "There is 1 fox"

pluralize`There is/are ${1} fox/foxes`
//=> "There is 1 fox"

⚠️ If an interpolated value isn't an integer >= 0 the pluralize tag won't perform any replacement on the adjacent text!

📢 A 0 will pick the plural form(s).

(The pluralize tag does not have any options.)

time

The time tag formats all interpolated dates according to a given format.

import {time} from '@customcommander/tagtical';

time`Last login on ${new Date()}@Y-m-d`;
//=> "Last login on 2020-01-09"

The format is attached to the date as follow ${date}@Y-m-d.

The @ sign links a date with a format and the format is made of formatting characters as seen in PHP's date function. The format is removed from the string after processing.

Only a subset of these options is supported at the moment and English is the only supported locale.

| Character | Description | |:----------|:------------------------------------------------| | Y | Year. Four digits | | y | Year. Two digits | | m | Month. Two digits with leading zeros. e.g. "01" | | n | Month. No leading zeros. e.g. "1" | | d | Day. Two digits; leading zeros. e.g. "01" | | j | Day. No leading zeros. e.g. "1" | | l | Day of the week e.g. "Monday" | | D | Day of the week, short e.g. "Mon" |

Anything that isn't a formatting character is rendered as is.

When an interpolated value isn't a date, the value is rendered as is and the date format is removed.

time`Last login on ${0/0}@Y-m-d`;
//=> Last login on NaN

(The time tag does not have any options.)

trim

Trim all interpolated values if they are strings. Non-string values are left as is.

import {trim} from '@customcommander/tagtical';

trim`My name is ${'   John    '}!`;
//=> "My name is John!"

(The trim tag does not have any options.)

upper

Uppercase all interpolated values if they are strings. Non-string values are left as is.

import {upper} from '@customcommander/tagtical';

upper`My name is ${'john'} and I am ${40} years old`
//=> "My name is JOHN and I am 40 years old"

(The upper tag does not have any options.)