<script src="https://cdn.jsdelivr.net/npm/dayjs@1.11.13/dayjs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/date-fns@4.1.0/cdn.min.js">
</script>
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
//window.ds = "2020-02-19T00:51:53.623839+00:00";
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
dateFns.parse('2025-01-09', 'yyyy-MM-dd', new Date())
dayjs('2025-01-09')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
datefns | |
dayjs |
Test name | Executions per second |
---|---|
datefns | 171811.1 Ops/sec |
dayjs | 2492891.5 Ops/sec |
The provided benchmark compares the performance of two JavaScript libraries, Day.js and date-fns, specifically focusing on their date parsing capabilities. Below is a detailed explanation of the benchmarks executed, the libraries in use, the pros and cons of each approach, and other alternatives worth considering.
Day.js:
'2025-01-09'
) using the dayjs
function directly.date-fns:
parse
function, where it's specified with a format of yyyy-MM-dd
.dateFns.parse('2025-01-09', 'yyyy-MM-dd', new Date())
dayjs('2025-01-09')
According to the latest benchmark results:
This signifies that Day.js is markedly faster for the parsing operation tested.
Pros:
Cons:
Pros:
Cons:
When choosing between Day.js and date-fns, or when considering alternatives, a few factors should be taken into account:
Date
objects and supports time zones and durations, though it is larger than both Day.js and date-fns.In summary, this benchmark showcases the strengths of Day.js in performance while also highlighting the versatility of date-fns as a more feature-rich, albeit slower, library for date manipulations. Each option has its niche, and the choice depends on specific project needs and performance considerations.