@zcorky/moment
TypeScript icon, indicating that this package has built-in type declarations

1.2.3 • Public • Published

moment

NPM version NPM quality Coverage Status Dependencies Build Status Known Vulnerabilities NPM download license issues

A minimalist JavaScript library that parses, validates, manipulates, and displays dates and times for modern browsers with a largely Moment.js-compatible API, written with TypeScript, inspired by Dayjs and Moment.js

moment().startOf('month').add(1, 'day').set('year', 2019).format('YYYY-MM-DD HH:mm:ss');
  • 🕒 Familiar Moment.js API & patterns
  • 💪 Immutable
  • 🔥 Chainable
  • ❇️ TypeScript
  • 🌐 I18n support (WIP, will be soon)
  • 🔌 Plugin System (WIP, will be soon)

Install

$ npm install @zcorky/moment

Usage

// typescript
import moment from '@zcorky/moment';

moment('2018-08-08') // parse

moment().format('{YYYY} MM-DDTHH:mm:ss SSS [Z] A') // display

moment().set('month', 3).month() // get & set

moment().add(1, 'year') // manipulate

Relatived

  • dayjs - immutable date time library alternative to Moment.js with the same modern API.
  • moment - Parse, validate, manipulate, and display dates in javascript.
  • luxon - A library for working with dates and times in JS.

License

MIT © Moeover

Package Sidebar

Install

npm i @zcorky/moment

Weekly Downloads

165

Version

1.2.3

License

MIT

Unpacked Size

38.7 kB

Total Files

36

Last publish

Collaborators

  • uniquecolesmith