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

@tbd54566975/web5-react-native-polyfills

v1.1.2

Published

An opinionated polyfill setup to enable web5 to work on react native

Downloads

392

Readme

Background

This package provides an opinionated set of polyfills to:

  • enable web5 to work on react-native with no custom setup
  • increase performance using C++ native libraries similar to what underpins Node and Browser

Pitch

Use this package if:

  • You're just getting started.
  • You want to get up and running quickly on react native and don't want to spend time perfectly tweaking all of your globals and polyfills.

Anti-pitch

Don't use this package if:

  • You want to perfectly understand the global namespace and everything that's going on with your RN runtime and JS engine.
  • You prefer to self manage the versions of all of these dependencies.
  • You don't want us to version these dependencies for you.

Polyfills

| Package | Description | | ------------------------------------- | ---------------------------------------------------------------------------------------- | | react-native-bignumber | Supply bn.js with C++ instead of JS | | @craftzdog/react-native-buffer | Supply node Buffer with C++ | | react-native-quick-base64 | Supply global.atob and global.btoa with C++ instead of JS | | react-native-blob-jsi-helper | Supply Blob arrayBuffers with C++. | | blob-polyfill.ts | Supply Blob.stream() with C++. Add Uint8Array support for Blob.constructor() with JS | | react-native-quick-crypto | Supply the node crypto API with C++ OpenSSL | | @peculiar/webcrypto | Supply the crypto.subtle webcrypto API with react-native-quick-crypto C++ OpenSSL | | event-target-polyfill | Supply new EventTarget() with JS | | realistic-structured-clone | Supply global.structuredClone with JS | | web-streams-polyfill | Supply ReadableStream WritableStream with JS | | readable-stream | Supply node stream with JS | | react-native-url-polyfill | Supply the web & node new URL() API with JS | | fastestsmallesttextencoderdecoder | Supply new TextEncoder() and new TextDecoder() with JS | | @azure/core-asynciterator-polyfill | Supply AsyncIterator with JS |

Usage

Install this package along with the following peer packages:

yarn add @tbd54566975/web5-react-native-polyfills react-native-quick-crypto@^0.7.0-rc.0 @craftzdog/react-native-buffer react-native-bignumber react-native-quick-base64 react-native-blob-jsi-helper

Add the following code to the top of your index.js entrypoint:

import '@tbd54566975/web5-react-native-polyfills';

Add the following two entries inside the plugins key of your babel.config.js:

["@babel/plugin-proposal-private-methods", { loose: true }],
      [
        "module-resolver",
        {
          alias: {
            crypto: "react-native-quick-crypto",
            stream: "readable-stream",
            buffer: "@craftzdog/react-native-buffer",
            "bn.js": "react-native-bignumber",
          },
        },
      ],

For example (Expo):

// babel.config.js
module.exports = function (api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: [
      ['@babel/plugin-proposal-private-methods', { loose: true }],
      [
        'module-resolver',
        {
          alias: {
            crypto: 'react-native-quick-crypto',
            stream: 'readable-stream',
            buffer: '@craftzdog/react-native-buffer',
            'bn.js': 'react-native-bignumber',
          },
        },
      ],
    ],
  };
};