├── .gitignore ├── .npmignore ├── app ├── index.html └── index.js ├── example.html ├── example.js ├── index.js ├── package.json ├── readme.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | screenshot.png 2 | -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/app/index.js -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/example.html -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- 1 | document.body.innerHTML = 'Hello from Electron!' 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliangruber/quicktron/HEAD/screenshot.png --------------------------------------------------------------------------------