https://github.com/lightsofapollo/packaged-webapp
Packaged App installer for FirefoxOS profiles
https://github.com/lightsofapollo/packaged-webapp
Last synced: 8 months ago
JSON representation
Packaged App installer for FirefoxOS profiles
- Host: GitHub
- URL: https://github.com/lightsofapollo/packaged-webapp
- Owner: lightsofapollo
- Created: 2013-06-17T00:22:58.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-07-26T06:39:45.000Z (almost 13 years ago)
- Last Synced: 2024-12-27T15:12:43.988Z (over 1 year ago)
- Language: JavaScript
- Size: 234 KB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
Awesome Lists containing this project
README
# Packaged App installer
Installs a webapp into an existing profile as a preloaded packaged app.
[](https://travis-ci.org/lightsofapollo/packaged-webapp)
## Usage
```js
var webapp = require('packaged-webapp');
var profile = '/path/to/profile';
var options = {
// source must contain a manifest.webapp file
source: '/path/to/webapp',
// origin of app usually in the following format:
origin: 'mydomain.name'
};
webapp.installApp(profile, options, function() {
// yey app is installed into profile
});
// multiple apps in parallel
webapp.installApps(profile, [optionsForA, ...], function() {
// ...
});
```
## LICENSE
Copyright (c) 2013 Mozilla Foundation
Contributors: Sahaja James Lal jlal@mozilla.com
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.