Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 751 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 751 Bytes

React Native BBS Signatures (w/ asm.js fallback)

This repo houses a sample React Native app which uses bbs-signatures from MATTR Global. It is using the asm.js fallback as WASM is unsupported in React Native currently.

Output

Output

Setup

yarn

Run the metro bundler with additional memory because the asm.js dependency is large and will result in Javascript Out-Of-Memory under the default settings.

Linux/MacOS NODE_OPTIONS=--max_old_space_size=8192 yarn start

Windows set NODE_OPTIONS="--max-old-space-size=8192" && yarn start

This WILL take some time the first time because of the large dependancy size, so go take a break.