<script src="//cdnjs.cloudflare.com/ajax/libs/ramda/0.25.0/ramda.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js"></script>
var users = [{
'user': 'fred',
'age': 48
},
{
'user': 'barney',
'age': 36
},
{
'user': 'fred',
'age': 40
},
{
'user': 'barney',
'age': 34
}
];
_.sortBy(users, [function(o) { return o.age; }]);
const byAge = R.ascend(R.compose(R.prop('age')));
R.sort(byAge, users);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Lodash | |
ramda |
Test name | Executions per second |
---|---|
Lodash | 2522298.2 Ops/sec |
ramda | 715261.9 Ops/sec |
Let's break down the benchmark test.
What is being tested?
The test compares the performance of two JavaScript libraries, Ramda and Lodash, when it comes to sorting an array of objects using the sortBy
function. Specifically, it tests how long each library takes to sort an array of users based on their age.
Options compared:
The options being compared are:
R.sort
with a custom comparator function created using R.compose
and R.prop
_
(the main object) with the sortBy
functionPros and Cons of each approach:
R.compose
to create a custom comparator)_
followed by sortBy
)Library usage:
Both libraries are used in their respective test cases:
R.sort
function, which takes an array and a comparator function as arguments._sortBy
function, which also takes an array and a comparator function (in this case, a simple arrow function).Special JS features or syntax:
The test uses the following special JavaScript features:
users
array and the HTML preparation code to include the library scripts.Other considerations:
Alternatives:
Other JavaScript libraries that provide similar functionality to Ramda and Lodash include:
Keep in mind that the choice of library often depends on specific requirements, such as performance needs, learning curve preferences, and ecosystem constraints.