1.1.2 • Published 2 years ago

dayjs-simple v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

dayjs-simple

CI Unit Tests GitHub npm GitHub top language npm bundle size

A top-level wrapper around the dayjs library used within the Orison Networks ecosystem. This library provides mutable objects that reference dayjs functions to manipulate and traverse dates. Standalone functions provide ease of use for date manipulation without having to rely on an instance of a mutable date.

Table of Contents

Features

  • Mutable - The date object is mutable and can be used to traverse dates.
  • Built on top of dayjs, still provides all of the functionality of dayjs.
  • Exclusive functions for ease of use.
  • Custom methods that dayjs does not provide.
  • Supports date strings when manipulating dates.
  • Can be used in the browser or in node.

Motivation

Internally, we use dayjs for date manipulation. We soon realized that we were writing a lot of our own functions that wrapped around the dayjs library. We also had no use for timezones, so we instead decided to create a small wrapper around dayjs that provides extended functionality for date manipulation. Most functions are exposed as both standalone functions and as methods on a mutable date object. We also found mutable dates were extremely convenient for our use-case, so we decided to include them as well.

This package is not meant to be a replacement for dayjs, but rather a wrapper around it that provides a more convenient API for our use-case.

Installation

npm install dayjs-simple

Usage

CommonJS

const { MutableDate } = require('dayjs-simple');

const today = new MutableDate();

// or

const dayjsSimple = require('dayjs-simple');

const today = new dayjsSimple.MutableDate();

Module

import { MutableDate } from 'dayjs-simple';

const today = new MutableDate();

// or

import dayjsSimple from 'dayjs-simple';

const today = new dayjsSimple.MutableDate();

Most utility functions are provided through the MutableDate class. This class also provides extra methods not found within dayjs. Most of the provided methods are also available as standalone functions. These functions all return a new instance of MutableDate and do not mutate the original date, unless an instance of MutableDate is passed in.

TypeScript

This package is written in TypeScript and includes type definitions, along with a type guard for MutableDate.

import { isMutableDateInstance, MutableDate } from 'dayjs-simple';

const today = new MutableDate();

if (isMutableDateInstance(today)) {
    // today is a MutableDate instance
}

Resources

License

This project is licensed under the MIT License - see the LICENSE file for details