# @cypress/xvfb

> Easily start and stop an X Virtual Frame Buffer from your node apps.

Latest version **1.2.4** (published 2018-09-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install @cypress/xvfb
pnpm add @cypress/xvfb
yarn add @cypress/xvfb
bun add @cypress/xvfb
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.2.4 |
| Published | 2018-09-28 |
| First published | 2017-06-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 10.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 53 |
| Author | Rob Wu |
| Maintainers | cypress-npm-publisher |

## Links

- npm: https://www.npmjs.com/package/@cypress/xvfb
- Repository: https://github.com/cypress-io/xvfb
- Homepage: https://github.com/cypress-io/xvfb#readme
- Issues: https://github.com/cypress-io/xvfb/issues
- npm.io page: https://npm.io/package/@cypress/xvfb

## Dependencies (2)

- [debug](https://npm.io/package/debug.md) ^3.1.0
- [lodash.once](https://npm.io/package/lodash.once.md) ^4.1.1

## Recent versions

- 1.2.4 (latest) — 2018-09-28
- 1.2.3 — 2018-04-20
- 1.2.2 — 2017-12-27
- 1.2.1 — 2017-12-27
- 1.2.0 — 2017-12-27
- 1.1.4 — 2017-12-26
- 1.1.3 — 2017-12-25
- 1.1.2 — 2017-12-25
- 1.1.1 — 2017-12-25
- 1.1.0 — 2017-12-24
- 1.0.4 — 2017-09-02
- 1.0.3 — 2017-06-21
- 1.0.2 — 2017-06-21
- 1.0.1 — 2017-06-21
- 1.0.0 — 2017-06-21

## README

## @cypress/xvfb

> easily start and stop an X Virtual Frame Buffer from your node apps.

[![CircleCI](https://circleci.com/gh/cypress-io/xvfb/tree/master.svg?style=svg)](https://circleci.com/gh/cypress-io/xvfb/tree/master)
[![Build Status](https://travis-ci.org/cypress-io/xvfb.svg?branch=master)](https://travis-ci.org/cypress-io/xvfb)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![renovate-app badge][renovate-badge]][renovate-app]

### Usage

```javascript
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:

* <code>displayNum</code> - the X display to use, defaults to the lowest unused display number >= 99 if <code>reuse</code> is false or 99 if <code>reuse</code> is true.
* <code>reuse</code> - whether to reuse an existing Xvfb instance if it already exists on the X display referenced by displayNum.
* <code>timeout</code> - number of milliseconds to wait when starting Xvfb before assuming it failed to start, defaults to 2000.
* <code>silent</code> - don't pipe Xvfb stderr to the process's stderr.
* <code>xvfb_args</code> - Extra arguments to pass to `Xvfb`.
* <code>onStderrData</code> - Function to receive `stderr` output

### 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](https://github.com/Rob--W/node-xvfb)

* [kesla](https://github.com/kesla) for https://github.com/kesla/node-headless
* [leonid-shevtsov](https://github.com/leonid-shevtsov) for https://github.com/leonid-shevtsov/headless
* [paulbaumgart](https://github.com/paulbaumgart) for creating the initial version of this package.

both of which served as inspiration for this package.

[renovate-badge]: https://img.shields.io/badge/renovate-app-blue.svg
[renovate-app]: https://renovateapp.com/

---
_Source: https://npm.io/package/@cypress/xvfb · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
