UNPKG

1.72 kBMarkdownView Raw
1# ![](https://cdn.rawgit.com/date-fns/date-fns/c5bcd92d04f14da194e6298101a6509b1c3b30f0/docs/logo.svg) date-fns
2
3🔥🔥🔥 **date-fns v2 is out!** 🔥🔥🔥
4
5⭐️ **Upgrading from v1 to v2?**
6
7- [See the changelog](https://github.com/date-fns/date-fns/blob/master/CHANGELOG.md)
8- Check out [@date-fns/upgrade](https://github.com/date-fns/date-fns-upgrade) and [@date-fns/upgrade-codemod](https://github.com/date-fns/date-fns-upgrade-codemod), they could help you with the upgrade!
9
10**date-fns** provides the most comprehensive, yet simple and consistent toolset
11for manipulating **JavaScript dates** in **a browser** & **Node.js**.
12
13**date-fns** is like [lodash](https://lodash.com) for dates. It has
14[**180+ functions** for all occasions](https://date-fns.org/docs/).
15
16```js
17import { compareAsc, format } from 'date-fns'
18
19format(new Date(2014, 1, 11), 'yyyy-MM-dd')
20//=> '2014-02-11'
21
22const dates = [
23 new Date(1995, 6, 2),
24 new Date(1987, 1, 11),
25 new Date(1989, 6, 10)
26]
27dates.sort(compareAsc)
28//=> [
29// Wed Feb 11 1987 00:00:00,
30// Mon Jul 10 1989 00:00:00,
31// Sun Jul 02 1995 00:00:00
32// ]
33```
34
35The library is available as an [npm package](https://www.npmjs.com/package/date-fns).
36To install the package run:
37
38```bash
39npm install date-fns --save
40# or with yarn
41yarn add date-fns
42```
43
44## Docs
45
46[See date-fns.org](https://date-fns.org/) for more details, API,
47and other docs.
48
49## JavaScript jobs by date-fns
50
51👋 Know someone who's looking for JavaScript devs? [Recommend us a job!](https://jobs.date-fns.org/#recommend)
52
53✉️ Get jobs worth sharing to your email! [Subscribe to the newsletter](https://jobs.date-fns.org).
54
55## License
56
57[MIT © Sasha Koss](https://kossnocorp.mit-license.org/)