New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

pear-mobile

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pear-mobile

Embeddable Pear runtime for mobile applications

latest
Source
npmnpm
Version
4.2.2
Version published
Weekly downloads
92
-72.94%
Maintainers
3
Weekly downloads
 
Created
Source

pear-mobile

Embeddable Pear runtime for mobile applications. Provides storage path and bare workers via worklets.

npm install pear-mobile

This module integrates Pear into React-Native-based Mobile applications.

See pear-runtime for Pear's embeddable runtime module for Desktop Devices.

MVP - EXPERIMENTAL

This boilerplate is MVP and Experimental.

Usage

const PearRuntime = require('pear-mobile')
const { version, upgrade, productName, name } = require('./package.json')

const runtime = new PearRuntime({ version, upgrade, name: productName })
runtime.updater.on('updated', async () => {
  await runtime.updater.applyUpdate()
  conosle.log('restart for update')
})

Quick Starts

Expo

git clone https://github.com/holepunchto/hello-pear-react-native

For end-to-end instructions from building to deploying with Pear see hello-pear-react-native README.md.

Features

  • Peer-to-Peer Over-the-Air (P2P OTA) updates (via pear-runtime-updater)
  • Application storage management

API

const pear = new PearRuntime(opts)

Create a runtime. opts may include:

  • dir Directory to store data (e.g. app data dir). Defaults to /Documents.
  • upgrade – (required) Pear link for OTA updates (e.g. from package.json upgrade field).
  • name - (required) The package.json prductName of the app.
  • store - (optional) pass a Corestore to be used for updates. If passed swarm must also be passed. The store should be replicated over the swarm.
  • swarm - (optional) pass a Hyperswarm to be used for swarming updates. If passed store must also be passed. The store should be replicated over the swarm.
  • app – (optional) The path to the local OTA react-native bundle as booted from native code. (defaults to pear-runtime-react-native default)
  • version – (optional) Current app version (i.e. from package.json); used for update checks.
  • updates – (optional) Set to false to disable P2P OTA updates.
  • storage – (optional) Saves the app storage path.

pear.storage

Suggested storage folder for app storage.

pear.updater

Instance of pear-runtime-updater

await pear.ready()

Awaits the open of the updater (p2p connections, drive open ...)

await pear.close()

Shut it down. You should do this when closing your app for best performance.

Making updates

VERY EXPERIMENTAL, MOST DEFINITELY WILL CHANGE.

Update listening and apply logic lives in pear-runtime-updater.

First allocate a pear link if you haven't using pear:

pear touch

Store this link in the package.json upgrade field of a project.

bundle your JS frontend. Take the distributable (e.g react-native bundle and assets) produced and make a deployment folder with the following structure:

/package.json
/by-arch
  /[...platform-arch]
    /app

Now go to this folder and stage this onto the link with pear stage

pear stage {link-from-touch}

Now seed it. Any build out there on a lower version will trigger the update flow.

LICENSE

Apache-2.0

FAQs

Package last updated on 28 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts