electron-touchscreen

1.0.0 • Public • Published

electron-touchscreen

Boilerplate for touchscreen or kiosk apps built with Electron.

Install

npm install electron-touchscreen --save

Run the example

cd example
npm run start

Basic Usage

const path = require('path');
const url = require('url');
const electron = require('electron');

const TouchscreenWindow = require('electron-touchscreen');

let win = null;
const app = electron.app;

app.on('ready', ()=> {
  const demo_url = url.format({
    pathname: path.join(__dirname, 'index.html'),
    protocol: 'file', 
    slashes: true,
  });

  win = new TouchscreenWindow({url: demo_url});
});

Key Commands

  • CMD+K: Toggles fullscreen
  • CMD+C: Toggle cursor visibility

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.011latest

Version History

VersionDownloads (Last 7 Days)Published
1.0.011
0.0.110
0.0.107
0.0.90
0.0.80
0.0.70
0.0.60
0.0.50
0.0.40
0.0.30
0.0.20
0.0.10

Package Sidebar

Install

npm i electron-touchscreen

Weekly Downloads

18

Version

1.0.0

License

MIT

Unpacked Size

8.4 kB

Total Files

8

Last publish

Collaborators

  • jeremy.from.earth