https://github.com/ssbc/react-native-ssb-shims
Node.js-related shims necessary for the SSB ecosystem to run on React Native apps
https://github.com/ssbc/react-native-ssb-shims
Last synced: 8 months ago
JSON representation
Node.js-related shims necessary for the SSB ecosystem to run on React Native apps
- Host: GitHub
- URL: https://github.com/ssbc/react-native-ssb-shims
- Owner: ssbc
- License: mit
- Created: 2017-11-16T18:31:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-09-04T07:34:19.000Z (almost 3 years ago)
- Last Synced: 2025-10-14T06:21:45.774Z (9 months ago)
- Language: JavaScript
- Size: 87.9 KB
- Stars: 7
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-native-ssb-shims
Node.js-related shims necessary for the SSB ecosystem to run on React Native apps.
## usage
First install it as a dependency in your project
```
npm install --save react-native-ssb-shims
```
Then "link" some dependencies (important!):
```
react-native link react-native-os
```
And import it in your project's index.js:
```js
require('react-native-ssb-shims');
```
### Note
Mac users: in order to get the post-install scripts to run, you will first need to install `coreutils` through homebrew
```brew install coreutils```