JSPM

fxos-findapp

0.3.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q20436F
  • License ISC

Find a particular app amongst the installed one in FirefoxOS

Package Exports

  • fxos-findapp

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 (fxos-findapp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

fxos-findapp

Given a local manifest.webapp, it finds app installed on the FirefoxOS device or simulator

Install

$ npm install --save fxos-findapp

Usage

The way the library currently finds the app in remote is by finding an app with the same name

var findApp = require('fxos-findapp');

findApp('./nicola/manifest.webapp', function(app) {
  console.log('my app remotely:', app)
});