目录

node-firefox-connect Build Status

Connects to a Firefox debuggable runtime.

Install with NPM

This is part of the node-firefox project.

Installation

From git

git clone https://github.com/mozilla/node-firefox-connect.git
cd node-firefox-connect
npm install

If you want to update later on:

cd node-firefox-connect
git pull origin master
npm install

npm

npm install node-firefox-connect

Usage

Connects to a Firefox runtime, given a port number, and returns a client that can be used to interact with said client.

// `connect` returns a Promise
connect(portNumber).then(function(client) {

});

Example

var connect = require('node-firefox-connect');

connect(1234)
  .then(function(client) {
    // Let's show for example all the running apps
    client.getWebapps(function(err, webapps) {
      webapps.listRunningApps(function(err, apps) {
        console.log("Running apps:", apps);
      });
    });
  });

History

This is based on initial work on fxos-connect by Nicola Greco.

关于
56.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9 京公网安备 11010802032778号