• Stars
    star
    115
  • Rank 299,535 (Top 7 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 2 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Really Async JSON Interface: a non-blocking alternative to JSON.parse to keep web UIs responsive

RAJI

Really Async JSON Interface: a non-blocking alternative to JSON.parse to keep web UIs responsive.

npm npm bundle size GitHub

In a nutshell:

  • RAJI guarantees that JSON parsing won't freeze your UI, especially on slower mobile devices.
  • It does so by dividing the parsing work in chunks.
  • It's extremely easy to integrate with web apps, you just need to change the JSON.parse(payload) calls to await parse(payload) calls.
  • RAJI chunks the work only when necessary. If the payload is small enough, it invokes JSON.parse synchronously under the hoods so you won't pay an additional overhead.
  • RAJI is extremely lightweight, only 1.71kB gzipped.

This project is experimental, so there's a lot to be improved. All feedback and help is highly appreciated!

Demo

The following video shows a quick demo of Raji, or you can try it out yourself at this link: https://federicoterzi.com/raji/

RAJI video demo

Explanation

Traditionally, web applications have been using the JSON.parse method to convert JSON payloads into JS objects. While being very optimized, the JSON.parse call is blocking, which means the page will become unresponsive when called with large JSON payloads, effectively freezing the app. This effect is even more pronounced on slower mobile devices.

Therefore, sometimes the JSON.parse method creates a bad UX, freezing the app and causing all user's input events to being delayed.

RAJI attempts to mitigate this problem by splitting the parsing work in chunks, and interleaving them with other tasks in the event loop. In other words, instead of parsing the whole payload within one event loop "tick", it distributes it across multiple ticks. If during the parsing process the user generates some input events, these are processed shortly afterward, keeping the UI responsive.

RAJI expose this functionality through a simple, async call. So instead of parsing the payload as:

const object = JSON.parse(payload)

you'll need to handle a promise:

const object = await parse(payload);

Installation

You can install it from NPM

npm install raji

Or using yarn:

yarn add raji

Or use directly in the browser:

<script src="https://unpkg.com/raji/dist/raji.js"></script>

Usage

To use RAJI, you can call the async parse method:

import { parse } from "raji"

const object = await parse(jsonPayload);

Options

That method also accept an optional option parameter to tune some optimizations:

const object = await parse(jsonPayload, {
  shortBodyThreshold: 1000,
});

These are the possible options:

Option Description Default value
asyncParsingAfterMillis Number of milliseconds after which the processing should become asynchronous. This is helpful to improve performance for short payloads, for which paying the price of going async might not be worth it. Set to 0 to disable this optimization. 20
chunkMillisThreshold Maximum amount of time (in milliseconds) for which a chunk can be executed when using the setTimeout fallback 50
shortBodyThreshold If the payload is smaller (in bytes) than this value, RAJI will call JSON.parse directly. This makes it much more efficient for small payloads in which chunking would be a useless overhead. Set to 0 to disable this optimization. 10000
shortValueThreshold Maximum length of a JSON element (object or array) that can be feeded to JSON.parse during chunked processing. If an element is larger than that, it's recursively chunked. Set to 0 to disable this optimization. 1000
yieldAfterThreshold RAJI batches the parsing "yields" if the number of scanned chars is below this threshold, improving performance. Set to 0 to disable this optimization. 2000

Testing

RAJI includes a comprehensive test suite thanks to the (awesome) JSONTestSuite project. To run the tests, first install all the required dependencies with yarn, and then run the tests with:

yarn test

Performance

JSON.parse will always have an higher throughput than RAJI. The reason is simple, JSON.parse is a built-in method implemented using efficient native code, which will always be faster than a JS-based solution. That said:

  • Throughput is not the most important metric for a web frontend, but response times and interaction delays are critical. RAJI trades better response times and interaction delays for lower throughput.
  • RAJI goes to great lengths to minimize the JS overhead. Instead of parsing the whole JSON at the JS level, it delegates the parsing to JSON.parse whenever possible. For example, if a payload is small enough, RAJI will call JSON.parse on it directly. On the other hand, if the payload is big it will recursively chunk it into smaller pieces, call JSON.parse over each of them and recombine the result.

For small payloads, you can expect a 1.5x-2x slowdown. For big payloads, the slowdown is in the 2x-10x range depending on the browser (with Firefox being the slowest and Chrome the fastest so far).

Therefore, RAJI is a safe choice for most scenarios, as it has comparable performance for small payloads and guarantees good responsiveness for big ones, preventing UI freezes.

FAQ

Is this relying on Web Workers?

No, all the parsing process is executed on the main thread, distributing the work over multiple chunks.

Shouldn't you use Web Workers for this?

While we could use Web Workers to move the parsing process out of the main thread, that doesn't solve the problem with big payloads. In particular, there's currently no way to share a structured object between a worker and main thread without causing an additional serialization and deserialization, which are blocking operations.

In other words, you can parse the JSON without blocking the main thread by moving the processing on a worker thread, but then you would have to pay a similar price moving the object back to the main thread. Therefore, this approach is only useful if you need small chunks of derived data from this JSON on the main thread, and not the whole payload.

This article does a great job explaining the problem further, and it's a great read!

Special thanks

I'd like to say thanks to all people that provided valuable feedback:

  • Thanks to @giacomocerquone for the discussions we had on possible approaches to improve performance!

More Repositories

1

modulo

Basic Cross-platform GUI Toolkit for Any Language
Rust
86
star
2

gesture-keyboard

A library to convert accelerometer data into characters using machine learning
Python
86
star
3

bipcut

A Python utility to extract videoclips using Soundwaves
Python
37
star
4

espanso-hub

The official espanso package repository
JavaScript
21
star
5

osarracino

High Performance Tablut AI Engine
C++
12
star
6

OpenCameraStudio

Experimental Open Camera fork to add Remote capabilities
Java
11
star
7

espanso-package-example

An example on how to create an espanso package
11
star
8

pygarl

pyGARL - Python Gesture Analysis and Recognition Library
Python
10
star
9

las-guida-pratica

Una guida pratica per superare l'esame di LAS
TeX
9
star
10

espanso-hub-core

Repository used to host espanso hub core packages
Ruby
8
star
11

federico-terzi.github.io

Personal Website
Vue
6
star
12

koda

Deep Learning-enhanced Keyword Detection in Document Images
Jupyter Notebook
5
star
13

bipcut-remote

An Android app that you can use as a remote for bipcut
Java
5
star
14

memLight

A Simple, Light-weight and Effective way to Learn
PHP
4
star
15

pydeno

Experimental Python bindings for the Deno JS runtime
Rust
4
star
16

homebrew-espanso

Homebrew formula for the espanso tool on macOS
Ruby
3
star
17

ninx

A simple but powerful language to write documentation
C++
3
star
18

linuxconfig

My personal linux configuration
Shell
2
star
19

ScotlandYard

Scotland Yard, a popular strategic game.
Python
2
star
20

leonardo

An experimental Reinforcement Learning-based Painting algorithm
Jupyter Notebook
2
star
21

dokey-desktop

Smarter workflow for any software
HTML
1
star
22

passwordino

An opensource password manager based on Arduino, with encryption and display support.
Arduino
1
star
23

webTablut

A WebAssembly port of the O(sarracino) engine to play Tablut online
JavaScript
1
star
24

InfoUniBot

A Telegram Bot that helps student with their schedule
Python
1
star