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

nepali-date

v0.1.3

Published

A Nepali date library for extracting dates based on Bikram Sambat (B. S.) and perform converstions with Gregorian calendar (A. D.)

Downloads

2,529

Readme

nepali-date

A Nepali Date library for nepali date parsing and formatting.

The lunar calendar based on Bikram Samvat seems to have varied from it's original specification. As the number of days on each month do not adhere to their standards when checked over a period.

The exact length of each month is the time taken by the Sun to move through a full zodiac sign.

Since, the nepali calendar didn't follow this closely. We have to use a map based implementation. So, the library would work only within a certain period of time. At the moment it works between 2000 BS to 2100 BS.

Installation

$ yarn add nepali-date

or

$ npm install nepali-date

Usage

const NepaliDate = require('nepali-date');

const d1 = new NepaliDate('2075-03-05');
const d2 = new NepaliDate('2075/3/5');
const d3 = new NepaliDate('2075.03.5');
const dp1 = new NepaliDate('2075/03'); // 2075/03/01
const dp2 = new NepaliDate('2075'); // 2075/01/01

// Create one from English Date
const d4 = new NepaliDate(new Date('2017-01-15')); 

// Create using year, month, date
const d5 = new NepaliDate(2075, 0, 1); 
    // Note that the month starts with 0 (for Baisakh)
    // To make it work similar with javascript Date object
  
// You could also use values higher or lower (negative) to wrap around
const d6 = new NepaliDate(2075, 13, 1); // '2076/2/1'
const d7 = new NepaliDate(2075, -1, 1); // '2074/12/1'

// Format date in nepali 
d6.format('yyyy-mm-dd'); // २०७५-०२-०१
d6.format('YYY-MM-DD'); // 075-02-01
d6.format('mmmm d, yyyy ddd'); // जेष्ठ १, २०७५ मंगल
d6.format('MMM D, YYYY DDD'); // Jes 1, 2075 Tue

// Retrieve english date from NepaliDate
d1.getEnglishDate(); // Return Date object
d1.getTime();        // Return timestamp in milliseconds

Bonus

Install the package globally and get access to command lines ad2bs and bs2ad to convert dates from one format to another from command line.

npm install -g nepali-date

or

yarn global add nepali-date

This will install the nepali-date library globally, installing ad2bs and bs2ad as command lines.

ad2bs 2018-01-01 bs2ad 2075-01-01

API

Constructors

  • new NepaliDate() Create a nepali date for current time.

  • new NepaliDate(string) Create a date parsing string in the following format yyyy[./-]mm[./-].dd.

    new NepaliDate('2075-03-05') new NepaliDate('2075/3/23') new NepaliDate('2075.1.24') new NepaliDate('2075.1') // Day is 1 by default new NepaliDate('2075') // Month and Day is 1 by default

    If string is not a valid date, an error is thrown

  • new NepaliDate(year, monthIndex, day) Create nepali date for the given year, month and day. Note that the month value is an index starting at 0, i.e., 0 for Baisakh, 1 for Jestha and so on. The values do not need to be bound to the valid values, but would correctly round off for any value for monthIndex or day. For example, monthIndex 12 would mean month 0 for year + 1. Similarly, the day values will also perform the similar transformation, for example. day 40 would mean day 8, 9, 10, or 11 of next month depending on the number of days in the given month.

    new NepaliDate(2075, 0, 1); // 2075/01/01

  • new NepaliDate(timestamp) Create nepali date from a unix timestamp (number of milliseconds since epoch similar to the one used by Date).

    new NepaliDate(Date.now()) // Create current date

  • new NepaliDate(Date) Create nepali date from javascript Date.

    new NepaliDate(new Date('2017/01/23')) // 2073/10/10

  • new NepaliDate(NepaliDate) Create a clone of another NepaliDate.

getYear()

Retrieve full nepali year (2074, 2075, etc)

getMonth()

Retrieve month index (0 for Baisakh, 1 for Jestha) so on.

getDate()

Retrieve day of month (1, 2, ...)

getHours(), getMinutes(), getSeconds(), getMilliseconds()

Hours, minutes, seconds and milliseconds similar to javascript Date.

getEnglishDate()

Retrieve Date object corresponding to the Nepali date

set(year, month, date)

Change date to given year, month and day of month

setYear(year)

Change the year of the existing date, without changing other parameters (month, date)

setMonth(monthIndex)

Change the month of the existing date, without chaning other parameters (year, date). Note that the values can extend beyong 0-11, which leads to change in year values as well. Ex, setting month to 12 will set month to Baisakh of next year, similarly setting month to -1 will set month to Chaitra of previous year.

setDate(day)

Change the day of month of the existing date, without changing other parameters (year, month). Note that the values can extend beyond the normal days in month. Ex, setting day to 0, will change the date to the last date of previous month, setting date to 35 will change the date to some day in the next month (3, 4, 5, depending on how many days are there in the month)

format(formatStr)

Format the date to provide various output based on format string

Any other character is printed as is. If you need to print the special characters (YMDymd), enclose them within quotes.