0.4.0 • Published 4 months ago

react-native-fast-url v0.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

react-native-fast-url

A Fast URL and URLSearchParams Polyfills for React Native.

Built in JSI and ada, a WHATWG-compliant and fast URL parser adopted in Node.js since v18.16 for the best performance.

Installation

npm install react-native-fast-url
yarn add react-native-fast-url

Benchmarks

Compared to react-native-url-polyfill.

Run on M1 Pro Mac Catalyst, React Native v0.72.7.

loop 100loop 1,000loop 10,000loop 100,000
react-native-url-polyfill22ms125ms1225ms12438ms
react-native-fast-url2ms4ms35ms361ms
fast-url is12x faster35x faster36x faster34x faster

Benchmark code in example: bench.ts

This library(Ada) significantly outperforms react-native-url-polyfill in terms of speed, fully embracing the WHATWG URL standard and Unicode Standards. However, it's essential to note that Ada's bundle size is larger compared to react-native-url-polyfill. The binary size of the Ada C++ library is approximately 500KB, while react-native-url-polyfill is a more compact 73.67KB. The choice between the two should be based on your specific requirements and preferences.

Usage

Import the polyfill in your entry file:

// index.js
import 'react-native-fast-url/polyfill';

Or if you want to use it only in some files:

import { URL, URLSearchParams } from 'react-native-fast-url';

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library

0.3.0

4 months ago

0.4.0

4 months ago

0.2.0

6 months ago