REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 2.02 KB
Close
/home/byroehnu/easepay.easetack.com/node_modules/date-fns/docs/gettingStarted.md
Text
Base64
# Getting Started ## Table of Contents - [Introduction](#introduction) - [Submodules](#submodules) - [Installation](#installation) ## Introduction **date-fns** provides the most comprehensive, yet simple and consistent toolset for manipulating **JavaScript dates** in **a browser** & **Node.js**. **date-fns** is like [lodash](https://lodash.com) for dates. It has [**200+ functions** for all occasions](https://date-fns.org/docs/). ```js import { format, compareAsc } from 'date-fns' format(new Date(2014, 1, 11), 'MM/dd/yyyy') //=> '02/11/2014' const dates = [ new Date(1995, 6, 2), new Date(1987, 1, 11), new Date(1989, 6, 10), ] dates.sort(compareAsc) //=> [ // Wed Feb 11 1987 00:00:00, // Mon Jul 10 1989 00:00:00, // Sun Jul 02 1995 00:00:00 // ] ``` ## Submodules **date-fns** includes some optional features as submodules in the npm package. Here is the list of them, in order of nesting: - FP — functional programming-friendly variations of the functions. See [FP Guide](https://date-fns.org/docs/FP-Guide); - UTC (in development) — variations of the functions which calculate dates in UTC±00:00 timezone. The later submodules are also included inside the former if you want to use multiple features from the list. To use submodule features, [install the npm package](#npm) and then import a function from a submodule: ```js // The main submodule: import addDays from 'date-fns/addDays' // FP variation: import addDays from 'date-fns/fp/addDays' // UTC variation: import addDays from 'date-fns/utc/addDays' // Both FP and UTC: import addDays from 'date-fns/fp/utc/addDays' // With tree-shaking enabled: import { addDays, format } from 'date-fns/fp' ``` ## Installation The library is available as an [npm package](https://www.npmjs.com/package/date-fns). To install the package, run: ```bash npm install date-fns --save # or yarn add date-fns ``` Start using: ```js import { formatDistance, subDays } from 'date-fns' formatDistance(subDays(new Date(), 3), new Date(), { addSuffix: true }) //=> "3 days ago" ```
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 20
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
.eslintrc.js
60 B
lrw-r--r--
2026-02-28 00:32:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.htaccess
127 B
lr--r--r--
2026-03-14 01:49:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
constants.md
721 B
lrw-r--r--
2026-02-28 00:36:12
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Day.js
510 B
lrw-r--r--
2026-02-28 00:32:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Duration.js
390 B
lrw-r--r--
2026-02-28 00:32:40
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
esm.md
689 B
lrw-r--r--
2026-02-28 00:36:12
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
fp.md
2.31 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
gettingStarted.md
2.02 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
i18n.md
2.78 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
i18nContributionGuide.md
27.67 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
index.js
3.57 KB
lrw-r--r--
2026-02-28 00:32:44
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Interval.js
528 B
lrw-r--r--
2026-02-28 00:34:46
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Locale.js
4.40 KB
lrw-r--r--
2026-02-28 00:34:46
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
logo.svg
2.37 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
logotype.svg
2.63 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
release.md
1016 B
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
timeZones.md
2.74 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
unicodeTokens.md
1.62 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
upgradeGuide.md
4.13 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
webpack.md
1.40 KB
lrw-r--r--
2026-02-28 00:36:14
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).