npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cheprasov/json-web-worker

v1.0.0

Published

The library for parse / stringify JSON in different thread via Web Workers

Downloads

6

Readme

MIT license

@cheprasov/json-web-worker (v1.0.0)

The library for parse / stringify JSON in different thread via Web Workers.

Features:
  • The library uses Promises for comfort work with JSON via Web Worker.
  • The library will use setTimeout if Web Worker is not supported.
  • Promise.catch allows to receive an error thrown on json parse/stringify.
  • The library is written on TypeScript.

1. How to install

> npm install @cheprasov/json-web-worker
import { jsonWebWorker } from '@cheprasov/json-web-worker';

2. Quick examples

2.1. Create SVG QR Code

import { jsonWebWorker } from '@cheprasov/json-web-worker';

// Parse via Web Worker
jsonWebWorker.parse('{"a": "b"}')
    .then(result => {
        console.log('Result:', result);
    }).catch(e => {
        console.log('Error:', e);
    });

// Stringify via Web Worker
jsonWebWorker.stringify({ a: 10, b: [1, 2, 3] }, 2)
    .then(result => {
        console.log('Result:', result);
    }).catch(e => {
        console.log('Error:', e);
    });

3. Documentation

import

import { jsonWebWorker, parse, stringify } from '@cheprasov/json-web-worker';
3.1. jsonWebWorker.parse(text): Promise or parse(text): Promise

The method executes JSON.parse in a thread via Web Worker

See more here https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse

arguments:

  • text - string - The string to parse as JSON.
  • returns Promise.

Example:

import { jsonWebWorker, parse } from '@cheprasov/worker-thread';

jsonWebWorker.parse('{"a": "b"}')
    .then(result => {
        console.log('Result:', result);
    }).catch(e => {
        console.log('Error:', e);
    });
3.2. jsonWebWorker.stringify(value, space): Promise or stringify(value, space): Promise

The method executes JSON.stringify in a thread via Web Worker

See more here https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify

arguments:

  • value - string - The value to convert to a JSON string.
  • space - optional, string or number, object that's used to insert white space into the output JSON string for readability purposes.
  • returns Promise.

Example:

import { jsonWebWorker, parse } from '@cheprasov/worker-thread';

jsonWebWorker.stringify({ a: 10, b: [1, 2, 3] }, 2)
    .then(result => {
        console.log('Result:', result);
    }).catch(e => {
        console.log('Error:', e);
    });

Something does not work

Feel free to fork project, fix bugs, write tests and finally request for pull