├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── app ├── index.html ├── main.js ├── renderer.js └── style.css ├── package.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/app/index.html -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- 1 | console.log('This is an Electron application!'); 2 | -------------------------------------------------------------------------------- /app/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/app/renderer.js -------------------------------------------------------------------------------- /app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/app/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electron-in-action/firesale-fem-v2/HEAD/yarn.lock --------------------------------------------------------------------------------