Package Exports
- @cypress/xvfb
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 (@cypress/xvfb) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@cypress/xvfb
easily start and stop an X Virtual Frame Buffer from your node apps.
Usage
var Xvfb = require('xvfb');
var options = {}; // optional
var xvfb = new Xvfb(options);
xvfb.start(function(err, xvfbProcess) {
// code that uses the virtual frame buffer here
xvfb.stop(function(err) {
// the Xvfb is stopped
});
});The Xvfb constructor takes four options:
displayNum- the X display to use, defaults to the lowest unused display number >= 99 ifreuseis false or 99 ifreuseis true.reuse- whether to reuse an existing Xvfb instance if it already exists on the X display referenced by displayNum.timeout- number of milliseconds to wait when starting Xvfb before assuming it failed to start, defaults to 2000.silent- don't pipe Xvfb stderr to the process's stderr.xvfb_args- Extra arguments to pass toXvfb.onStderrData- Function to receivestderroutput
Debugging
Run with DEBUG=xvfb environment variable to see debug messages. If you want
to see log messages from the Xvfb process itself, use DEBUG=xvfb,xvfb-process.
Thanks to
Forked from node-xvfb
- kesla for https://github.com/kesla/node-headless
- leonid-shevtsov for https://github.com/leonid-shevtsov/headless
- paulbaumgart for creating the initial version of this package.
both of which served as inspiration for this package.