Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/no9/launch-chrome-app
A cross platform install and launcher for chrome apps and extenstions
https://github.com/no9/launch-chrome-app
Last synced: 5 days ago
JSON representation
A cross platform install and launcher for chrome apps and extenstions
- Host: GitHub
- URL: https://github.com/no9/launch-chrome-app
- Owner: No9
- License: mit
- Created: 2015-06-22T13:58:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-14T14:47:20.000Z (over 8 years ago)
- Last Synced: 2024-12-09T00:14:22.658Z (15 days ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# launch-chrome-app
A cross platform module for installing/launching for chrome apps in node.See https://github.com/No9/clowder/blob/master/postinstall/postinstall.js and
https://github.com/No9/clowder/blob/master/package.json#L13 for an example of using this to enable Chrome Extension installs from NPM.Part of [chromiumify](https://github.com/chromiumify "chromiumify")
![info](https://nodei.co/npm/launch-chrome-app.png)
## install```sh
$ npm install launch-chrome-app
```## usage
```
var cpl = require('launch-chrome-app')cpl('path_to_app', function(err) {
if (err) {
console.log(err)
}
// something to run after app is launched
})
```## test
```sh
$ npm test
```