Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghiscoding/moment-tiny
arse, validate, manipulate, and display dates in javascript. http://momentjs.com
https://github.com/ghiscoding/moment-tiny
Last synced: about 1 month ago
JSON representation
arse, validate, manipulate, and display dates in javascript. http://momentjs.com
- Host: GitHub
- URL: https://github.com/ghiscoding/moment-tiny
- Owner: ghiscoding
- License: mit
- Created: 2024-04-05T00:10:06.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-01T18:37:45.000Z (7 months ago)
- Last Synced: 2024-05-02T23:49:28.222Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![npm version](https://badge.fury.io/js/moment-tiny.svg)](https://badge.fury.io/js/moment-tiny)# moment-tiny
This package exposes 2 builds from the MomentJS projects (CJS and ESM), both of the files are pulled from the [GitHub/Moment](https://github.com/moment/moment/) project, so that you can import/require your prefered build of moment into your projects without the bloat of any locales.
- CJS which is [`/moment.js`](https://github.com/moment/moment/blob/develop/moment.js) (not minified) located at GitHub Moment's project root.
- ESM which is [`/min/moment.min.js`](https://github.com/moment/moment/blob/develop/min/moment.min.js) (minified) located in GitHub Moment's project under `/min` folder
- some info was detailed in this MomentJS [commit](https://github.com/moment/moment/commit/87994b745c20febf378ccd8f2dc190cd8d225020).This package will follow the [moment.js releases](https://github.com/moment/moment/tags).
### What's the difference with [`moment-mini`](https://github.com/ksloan/moment-mini)?
The difference is that `moment-mini` is only including the CJS build, however I'm more interested in the ESM build which is also included in here. I also added `exports` in the `package.json` for better support as can be seen under the [Are the types wrong](https://arethetypeswrong.github.io/?p=moment-tiny) website.
To be clear, MomentJS already has both CJS/ESM builds (which is actually where we are getting the files from) **but** bundlers like WebPack will most often include **all** locales which is a huge problem. Since `moment-tiny` does not provide any locale, the install will always be the smallest without requiring any bundler config.