0.0.1-2 • Published 7 years ago

@screenie/screenie-adpater-spectacle v0.0.1-2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

screenie-adapter-spectacle

Build Status

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'
  });
})();