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

x-format

v0.0.2

Published

simple formatting functions for date and numbers with units. Uses moment.js for date formatting

Downloads

1

Readme

Build Status

x-format

This module contains formatting functions for numbers and dates.

It offers a simple interface and a configurable default behavior.

Using options you can override the default behavior and use p.e. all date formats as defined by moment.js

usage

var format=require('x-format');

var
    str1 = format.number({value:5,unit:'$'}), // '5.00 $'
    str2 = format.number(1000,4),             // '1,000.40'

    str3 = format.date(1393314010759),  // '02/25/2014' default format 'L'
    str4 = format.date(1393314010759),  // '02/25/2014'
    str5 = format.date('2014');         // '01/01/2014'


format.config.locale='de'; // change the global default locale

var	
    str5_de = format.date('2014'),                                           // '01.01.2014' as defined global, de 
    str5_en = format.date('2014',{locale:'en'}),                             // '01/01/2014' explicit with option
    str6    = format.date('2014-02-22',{locale:'en'}),                       // '02/22/2014' ISO conversion
    str7    = format.date(1393314010759,{format:'MMMM Do YYYY, h:mm:ss a'}), // 'Februar 25. 2014, 8:40:10 am'
    str8    = format.date(1393314010759,{format:'LLL'}),                     // '25. Februar 2014 8:40 Uhr'
    str9    = format.date('25. Februar 2014');                               // '25.02.2014' parse locale specific input

format.config

format.config.locale = 'en'

@param {locale:} contains the default locale to use globally. Default 'en'

format.number: function( value, options )

Formats number, with decimal point, thousend separators, scale and v.unit as suffix

@param {value} a number or an object like { value: <number> , unit: 'MB' }
@param {options} optional options merged with format.number.config and format.config
@return {the} formatted string

format.number.en, .de ...

contains for each locale the thousands and decimal separator:

de: { thousands:'.', decimal:',' }

format.number.config

contains the global default options:

@param {scale} number of digits to show. Default 2
@param {unit} show units in final string in case number is an object with a unit property. Default: true

format.date: function( date, options )

Formats a date according to the locale settings, Default format is 'L' as defined by moment.js

Example:

var str = require('x-format').date('2012-05-03', {locale:'de'}); // '03.05.2012'

@param {date} the date as a string or long a returned by Date.now()
@param {options} optional options. Example {format:'LLL', locale: 'en' }. Default format is 'L'
@return {the} formatted string