<script src="https://unpkg.com/immer/dist/immer.umd.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/immutable/3.8.2/immutable.js"></script>
//const { fromJS } = require('immutable');
var data = { items: {}, count: 0, keys: [] }
for (let index = 0; index < 100; index++) {
data[index] = { id: index, name: `ITEM-${index}`, value: Math.random() }
data.count++
data.keys.push(index)
}
var NEW_ITEM_ID = data.count +1
var produce = immer.default
var im = Immutable.fromJS(data);
data = produce(data, draft => {
draft.items[NEW_ITEM_ID] = { id: NEW_ITEM_ID, name: 'ITEM-NEW', value: 0 }
draft.counter++
draft.keys.push(NEW_ITEM_ID)
})
data = {
data,
items: {
data.items,
[NEW_ITEM_ID]: { id: NEW_ITEM_ID, name: 'ITEM-NEW', value: 0 }
},
count: data.count +1,
keys: [ data.keys, NEW_ITEM_ID]
}
var im = Immutable.fromJS(data);
im = im.set('items', im.get('items').set(NEW_ITEM_ID, { id: NEW_ITEM_ID, name: 'ITEM-NEW', value: 0 }));
im = im.set('count', im.count +1);
im = im.set('keys', im.get('keys').push(NEW_ITEM_ID));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
immer | |
shallow copy | |
Immutable |
Test name | Executions per second |
---|---|
immer | 1574.7 Ops/sec |
shallow copy | 3875.8 Ops/sec |
Immutable | 66.6 Ops/sec |
Measuring the performance of different approaches to create and update objects in JavaScript can be a fascinating benchmark. Let's break down what is tested on the provided JSON:
The test creates an object data
with 100 properties, each representing an item with an ID, name, and value. The goal is to add a new item to the items
array without modifying the original object.
Three approaches are compared:
immer.default
is used to create a draft of the data
object and then update it with a new item.data
object using the spread operator ({ ...data, ... }
) and then updates it with the new item.data
object and then updates it with the new item using methods like set()
.The test case uses new Date()
instead of a special JS feature or syntax, which is a common practice in benchmarking to ensure consistent results across different browsers and environments.
The latest benchmark result shows that Shallow Copy outperforms both Immer and Immutable.js, likely due to its lightweight nature and lack of overhead. However, the actual performance difference may vary depending on the specific use case and requirements.
Other alternatives to consider:
Keep in mind that the choice of approach ultimately depends on your specific requirements, such as performance, readability, and maintainability.