Skip to content

Instantly share code, notes, and snippets.

@Niweera
Last active February 27, 2022 04:25
Show Gist options
  • Save Niweera/68bb048f3fb90971e96d79919c296bd5 to your computer and use it in GitHub Desktop.
Save Niweera/68bb048f3fb90971e96d79919c296bd5 to your computer and use it in GitHub Desktop.
XVFB to emulate a virtual display
import Xvfb from "xvfb";
const runHeadless = async () => {
const xvfb = new Xvfb();
xvfb.startSync();
// run the code that needs a
// virtual display
xvfb.stopSync();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment