JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 51
  • Score
    100M100P100Q50870F
  • License MIT

An Expo Config Plugin for embedding a web app inside a React Native (Expo) app.

Package Exports

  • dubloon
  • dubloon/build/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dubloon) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

The Dubloon library 🧰

Structure

.
├── plugin   # The Expo Config Plugin
└── src      # The API for Dubloon

Contributing

Developing the plugin

To develop the plugin (./plugin) code in watch mode:

cd packages/dubloon
npm run dev:plugin

# In a separate terminal, prebuild the Expo iOS and Android apps
cd apps/example
npx expo prebuild

I don't normally bother passing the --clean flag to npx expo prebuild because it takes so long to reinstall the CocoaPods; instead, if I ever want to undo any actions, I just manually discard any changes via git source control.

Developing the APIs (/src)

To develop the APIs (./src) code in watch mode:

cd packages/dubloon
npm run dev:module

# In a separate terminal, run the iOS or Android example Expo app
cd apps/example
npm run ios