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

momentnp

v1.0.3

Published

momentnp is a npm library that facilitates easy handling and formatting of dates, with special support for the Nepali calendar system. It provides methods for calculating time differences, formatting dates, converting dates to the Bikram Sambat (BS) calen

Downloads

8

Readme

momentnp

momentnp is a node module that provides various utilities for handling dates, including formatting dates, calculating the time difference from the current time, and converting dates to Nepali formats.

Table of Contents

Installation

Simply paste the following code into the terminal to install momentnp:

npm install momentnp

or

yarn add momentnp

Usage

To use momentnp, create an instance of the function with a date string or a Date object. If no valid date is provided, it will use the current date.

const myDate = momentnp("2023-06-01");

fromNow

The fromNow method calculates the difference from the provided date to the current date and returns the difference in Nepali format.

myDate.fromNow(); // Returns the difference in Nepali, e.g., 'केहि क्षण पहिले'

format

The format method formats the date into different specified formats. Available formats are:

  • dmy-: YYYY-MM-DD
  • dmyt-: YYYY-MM-DD HH:MM:SS
  • dmy/: YYYY/MM/DD
  • dmyt/: YYYY/MM/DD HH:MM:SS
  • DDMMYY: Dth Month, YYYY
  • DDDDMMYY: Day, Dth Month YYYY
  • ddDDMMYY: Day, Dth Mon YYYY
  • DDDDMMYYnp: Nepali format with full day and month names
  • DDMMYYnp: Nepali format with month name
  • YYMMDDDDnp: Nepali format with year, month, and day names
  • dmytnp-: Nepali format with dash separator
  • dmynp-: Nepali format with dash separator, date only
  • dmynp/: Nepali format with slash separator, date only
  • dmytnp/: Nepali format with slash separator
  • fullnp: Full Nepali date with time
myDate.format("dmy-"); // Returns '2023-06-01'
myDate.format("fullnp"); // Returns full Nepali date with time

inBS

The inBS method converts the date to the Bikram Sambat (BS) calendar and returns it in the specified format. Available formats are:

  • YYMMDD: BS date in YYYY-MM-DD
  • ddmmyy: BS date in Nepali format with month name
  • ddmmyyfull: BS date in full Nepali format
  • mmddyy: BS date with month name
  • yymmdd: BS date in YYYY/MM/DD
myDate.inBS("YYMMDD"); // Returns BS date in YYYY-MM-DD format
myDate.inBS("ddmmyyfull"); // Returns full Nepali formatted BS date

isPast

The isPast method checks if the provided date is in the past.

myDate.isPast(); // Returns true if the date is in the past, otherwise false

Examples

const dateExample = momentnp("2023-05-21");

console.log(dateExample.fromNow()); // Outputs time difference in Nepali
console.log(dateExample.format("dmy-")); // Outputs '2023-05-21'
console.log(dateExample.format("fullnp")); // Outputs full Nepali formatted date and time
console.log(dateExample.inBS("YYMMDD")); // Outputs BS date in YYYY-MM-DD format
console.log(dateExample.isPast()); // Outputs true or false based on whether the date is in the past

By utilizing momentnp, you can easily handle date manipulations and formatting in both English and Nepali contexts.