fxos-findapp

Find a particular app amongst the installed one in FirefoxOS

Usage no npm install needed!

<script type="module">
  import fxosFindapp from 'https://cdn.skypack.dev/fxos-findapp';
</script>

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