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

hijri-date

v0.2.2

Published

HijriDate Class behaves like the built-in Date class .. However, it is compatible with Hijri Calendar التقويم الهجري

Downloads

2,157

Readme

Build Status Coverage Status

Overview :

  • hijri-date provides HijriDate class which is the appropriate class to handle hijri dates like the built-in Date is the appropriate class to handle gregorian dates.

  • HijriDate class shared almost the same interface with Date class :

  • getFullYear
  • getDate (day of month)
  • getDay (day index of week)
  • getHours
  • ...
  • Works on client-side (browser) and server-side (NodeJS apps).

Install

npm install hijri-date --save;

or

<script src="https://rawgit.com/abdennour/hijri-date/master/cdn/hijri-date-latest.js" type="text/javascript" ></script>

Examples :

ES7 or after :

 import 'hijri-date';

 const today = new HijriDate();
 const day_eid_adha = new HijriDate(1438, 12, 10); // عيد الأضحى لسنة 1438
 const dayGreg = day_eid_adha.toGregorian()  ;
 //  Fri Sep 01 2017 00:00:00 GMT+0300 (AST)
//------ Convert from Gregorian to Hijri---------
 const nowGreg = new Date();
 const nowHijri = nowGreg.toHijri();     

If you want to work safety, use hijri-date/lib/safe as following :

import HijriDate,{toHijri} from 'hijri-date/lib/safe';

const today = new HijriDate();
const day_eid_adha = new HijriDate(1438, 12, 10); // عيد الأضحى لسنة 1438
const dayGreg = day_eid_adha.toGregorian()  ;
//  Fri Sep 01 2017 00:00:00 GMT+0300 (AST)
//------ Convert from Gregorian to Hijri---------
const nowGreg = new Date();
const nowHijri = toHijri(nowGreg);

ES6 or before :

 require('hijri-date')
 // then HijriDate class will be public as Date class .
// then, the same as above (see ES7 )
//....
  • safe import :
 const hijriSafe= require('hijri-date/lib/safe');
 const HijriDate =  hijriSafe.default;
 const toHijri   = hijriSafe.toHijri;
// then, the same as above (see ES7 safe)
const today = new HijriDate();
const day_eid_adha = new HijriDate(1438, 12, 10); // عيد الأضحى لسنة 1438
//......

Documentation:

Documentation was published here

Contribution :

  • Will be written soon . However, if you want to contribute, please, check 🔬 uni-tests firstly & how it was written.

History of releases :

  • 0.2.2 :

    • fix a bug related to english localisation .

    • overload constructor to accept default month (1) and default (date : 1)

    • add documentation

  • 0.2.0 :

    • The first bundled version is generated (then, it will be embedded in <script> directly without using npm)

    • New methods added to HijriDate class : isToday, isYesterday, isTomorrow, is, clone, ignoreTime,...etc

    • Chaining methods calls by returning the instance itself (this) if it is possible .

  • 0.1.5 :

    • Refactor code.
  • 0.1.4 :

    • supports locales (Hijri.locales).

    • locales can be extended .

    • apply format on HijriDate's instance new HijriDate().format('dddd')

    • Override toString to log the full date clearly such as Date class.

    • Substract days,hours, minutes,...

  • 0.1.3 : the first mature package.

License:

MIT .