Package Exports
- lit-date
 - lit-date/lib/index.js
 - lit-date/lib/index.mjs
 - lit-date/lib/index.umd.js
 
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (lit-date) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
⏰ lit-date
Light-weight, faster datetime formatter for modern browsers.
lit-date is ...
- ⏰ Formatter for Date object
 - 👼 Light-weight (~1kB gzipped!)
 - 🦄 Very faster than other datetime libraries (e.g. 
moment) - 🆕 Powered by 
Template literals 
Install
Node.js
npm i --save lit-date
# -- OR --
yarn add lit-dateBrowser
<script src="https://unpkg.com/lit-date"></script><script type="module">
  import litdate from 'https://unpkg.com/lit-date?module';
</script>Usage
const text = litdate`${'YYYY'}/${'MM'}/${'DD'}`(new Date());
console.log(text);// i18n
const dayOfWeek = ({ dayOfWeek }) => [...'日月火水木金土'][dayOfWeek];
const format = litdate`${'M'}月${'D'}日${dayOfWeek}曜日`;
console.log(format(new Date()));See examples.
Benchmark
See benchmarks for more details.
Basic usage
new Date()->2000/01/06
| Chrome | Firefox | 
|---|---|
![]()  | 
![]()  | 
Advanced usage
new Date()->1月6日(木)
| Chrome | Firefox | 
|---|---|
![]()  | 
![]()  | 
Bundle size
| size | gzip | |
|---|---|---|
| tinydate | ||
| time-stamp | ||
| lit-date | ||
| tinytime | ||
| date-format | ||
| dateformat | ||
| formatoid | ||
| fecha | ||
| dayjs | ||
| date-fns | ||
| luxon | ||
| moment | 
Contribute
PRs accepted.



