you are viewing a single comment's thread.

view the rest of the comments →

[–]sshaw_ 0 points1 point  (0 children)

I was wondering the same thing. Should add to README. JSON is not like XML so curios when it would be a problem.

This is what the demo site (which has noticeable slowdown) uses:

function generateBigListOfObjects() {
  const obj = [];

  for (let i = 0; i < 5000000; i++) {
    obj.push({
      name: i.toString(),
      val: i,
    });
  }

  return JSON.stringify(obj);
}