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-findappUsage
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)
});