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

furmat

v2.0.0

Published

super powered printf & util.format equivalent string formatting, with locals & chainable modifiers

Downloads

40

Readme

fürmat version License Build Status Downloads Coverage Status

super powered printf & util.format equivalent string formatting, with locals & chainable modifiers.

Install

npm install --production --save furmat

API

furmat([options])

  • options (Object, optional): configuration object
    • chalk (Boolean, optional): enable/disable Chalk modifiers Default: true
    • locals (Object, optional): locals object (key => value pairs)
    • modifers (Object, optional): modifiers object (name => function pairs)

Returns: Function The string formatting function.

const format = furmat({
  locals: {
    name: 'Ahmad'
  },

  modifiers: {
    capitalize: (string) => string.charAt(0).toUpperCase() + string.slice(1),
    upper: (string) => string.toUpperCase(),
    first: (string) => string.charAt(0)
  }
})

console.log(format('%s:capitalize %foo:upper:first', 'hello'))

the above example should output:

Hello A

The returned function behaves in an identical manner to util.format, with additional abilities to process locals & modifiers

The first argument is a string that contains zero or more placeholders. Each placeholder is replaced with the converted value from its corresponding argument. Supported placeholders are:

  • %s - String.
  • %d - Number (both integer and float).
  • %j - JSON. Replaced with the string '[Circular]' if the argument contains circular references.
  • % - single percent sign ('%'). This does not consume an argument.

If the placeholder does not have a corresponding argument, the placeholder is not replaced.

format('%s:%s:bar', 'foo') // 'foo:%s:bar'

If there are more arguments than placeholders, the extra arguments are converted to strings with util.inspect() and these strings are concatenated, delimited by a space.

format('%s:%s', 'foo', 'bar', 'baz') // 'foo:bar baz'

you can add predefined locals and modify placeholders & locals by attaching modifiers:

Modifiers

Modifiers are references to named functions meant to modify the placeholder,

example
const format = furmat({
  modifiers: {
    upper: (string) => string.toUpperCase(),
    lower: (string) => string.toLowerCase(),
    first: (string) => string.charAt(0)
  }
})

format('%s:upper | %s:lower', 'this will become upper cased', 'THIS WILL BECOME LOWER CASED')
output
THIS WILL BECOME UPPER CASED | this will become lower cased

you can also chain modifiers:

format('%s:upper:first | %s:lower:first', 'a', 'B')
output
A | b

Chalk Styles Modifiers

Fürmat includes Chalk Styles modifiers, which are useful for console logging. See oh-my-log.

example
const format = furmat()

format('%s:red', 'this text will be red in the console')

you can disable the Chalk modifiers by simply setting the chalk option to false:

const format = furmat({
  chalk: false
})

format('%s:red', 'plain text')

Locals

Locals are named variable references that behave in an identical manner to placeholders, but with a pre-defined value set at the time of creating the furmat function

example
const format = furmat({
  locals: {
    name: 'Slim Shady',
    action: 'please stand up?'
  }
})

format('Will the real %name %action')
output
Will the real Slim Shady please stand up?

you can also attach modifiers to locals:

const format = furmat({
  modifiers: {
    upper: (value) => value.toUpperCase(),
    lower: (value) => value.toLowerCase()
  },

  locals: {
    name: 'Slim Shady',
    action: 'please stand up?'
  }
})

format('Will the real %name:lower %action:upper')
output
Will the real slim shady PLEASE STAND UP?

License: ISC • Copyright: ahmadnassri.com • Github: @ahmadnassri • Twitter: @ahmadnassri