Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.59 KB

README.md

File metadata and controls

44 lines (29 loc) · 1.59 KB

Date Helper library

tests workflow version workflow Run Tests

A helper library for Javascript Date object

Features

Usage

Clone the repo and then run npm install. That's all!

Start coding! package.json and entry files are already set up for you, so don't worry about linking to your main file, typings, etc. Just keep those files with the same name.

NPM scripts

  • npm run build: Generate bundles and typings, create docs
  • npm run detect-duplicates: Detect code duplicates
  • npm run lint: Lints code
  • npm run lint-fix: Lints and fix the code
  • npm run test: Run tests

Importing library

  1. Install the library
npm install git+https://github.com/clearvox/date-helper-lib.git#{fragment}

fragment can either be a tag or a branch you are working on (let say if you want to test some code before merge)

  1. Then use it:
const { DateHelper } = require('@clearvox/date-helper');

console.log(DateHelper.formatForLogging(new Date()))