screenie-adapter-spectacle
An adapter for screenie for use with spectacle presentations
Install
yarn add @screenie/screenie @screenie/screenie-adapter-spectacle --dev
Usage
const { screenie } = require('@screenie/screenie');
const path = require('path');
(async () => {
const screenshots = await screenie({
adapter: 'screenie-adapter-spectacle',
folder: path.join(process.cwd(), 'screenshots'),
url: 'http://localhost:3000'
});
})();