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

strftime-js

v0.0.2

Published

Method that enable formatted output(like strftime in Python) from date instance.

Downloads

16

Readme

strftime-js

Method that enable formatted output(like strftime in Python) from date instance.

Installation

Use yarn

yarn add strftime-js

or npm

npm install strftime-js

Usage

Patch method to instance

import { patchInstance } from 'data-formatter'

const instance = new Date()
console.log(patchInstance(instance).toFormatted('Today is %x')) // -> Today is 1/1/2020

Patch method to constructor

import { patch } from 'data-formatter'

patch()
const instance = new Date()
console.log(instance.toFormatted('Today is %x')) // -> Today is 1/1/2020

Reference

| Code | Meaning | Example | | ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------ | | %a | Weekday as abbreviated name. | Mon | | %A | Weekday as full name. | Monday | | %w | Weekday as a decimal number, where 0 is Sunday and 6 is Saturday. | 1 | | %d | Day of the month. | 30 | | %b | Month as abbreviated name. | Sep | | %B | Month as full name. | September | | %m | Month as a decimal number, where 0 is January and 11 is December. | 9 | | %y | Year without century as a decimal number. | 13 | | %Y | Year with century as a decimal number. | 2013 | | %H | Hour (24-hour clock) as a decimal number. | 07 | | %I | Hour (12-hour clock) as a decimal number. | 07 | | %p | Locale’s equivalent of either AM or PM. | AM | | %M | Minute as a decimal number. | 06 | | %S | Second as a decimal number. | 05 | | %j | Day of the year as a decimal number. | 273 | | %U | Week number of the year (Sunday as the first day of the week) as a decimal number. All days in a new year preceding the first Sunday are considered to be in week 0. | 39 | | %W | Week number of the year (Monday as the first day of the week) as a decimal number. All days in a new year preceding the first Monday are considered to be in week 0. | 39 | | %c | Locale’s appropriate date and time representation. | Mon Sep 30 07:06:05 2013 | | %x | Locale’s appropriate date representation. | 09/30/13 | | %X | Locale’s appropriate time representation. | 07:06:05 | | %% | A literal '%' character. | % |