├── .gitattributes ├── .gitignore ├── Chapter 04 └── Code │ ├── build │ ├── app.js │ ├── index.html │ ├── polyfills.js │ └── vendor.js │ ├── gulpfile.js │ ├── package.json │ ├── readme.md │ ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.ts │ │ ├── fbsdk.service.ts │ │ ├── home.component.html │ │ ├── home.component.ts │ │ ├── index.html │ │ ├── loggedinguard.service.ts │ │ ├── login.component.ts │ │ ├── polyfills.ts │ │ ├── profile.component.html │ │ ├── profile.component.ts │ │ ├── style.css │ │ └── vendor.ts │ ├── index.html │ ├── main.js │ └── package.json │ ├── tsConfig.json │ ├── typings.json │ ├── typings │ ├── globals │ │ ├── angular-protractor │ │ │ ├── index.d.ts │ │ │ └── typings.json │ │ ├── core-js │ │ │ ├── index.d.ts │ │ │ └── typings.json │ │ ├── github-electron │ │ │ ├── index.d.ts │ │ │ └── typings.json │ │ ├── jasmine │ │ │ ├── index.d.ts │ │ │ └── typings.json │ │ ├── node │ │ │ ├── index.d.ts │ │ │ └── typings.json │ │ └── selenium-webdriver │ │ │ ├── index.d.ts │ │ │ └── typings.json │ └── index.d.ts │ └── webpack.config.js ├── Chapter01 ├── Example01 │ ├── index.html │ ├── main.js │ ├── package.json │ └── readme.md └── Example02 │ ├── electron-readme.md │ ├── github-markdown.css │ ├── index.html │ ├── main.js │ ├── markdown-processor.js │ ├── package.json │ ├── readme.md │ └── style.css ├── Chapter02 ├── build │ ├── app.js │ ├── index.html │ ├── polyfills.js │ ├── style.css │ └── vendor.js ├── main.js ├── package.json ├── readme.md ├── src │ ├── app.component.ts │ ├── app.module.ts │ ├── app.ts │ ├── index.html │ ├── package.json │ ├── polyfills.ts │ ├── style.css │ └── vendor.ts ├── tsConfig.json ├── webpack.config.js └── yarn.lock ├── Chapter03 ├── .env ├── .vscode │ ├── launch.json │ └── tasks.json ├── build │ ├── app.js │ ├── index.html │ ├── polyfills.js │ ├── style.css │ └── vendor.js ├── main.js ├── package.json ├── readme.md ├── src │ ├── app.component.ts │ ├── app.module.ts │ ├── app.ts │ ├── index.html │ ├── package.json │ ├── polyfills.ts │ ├── style.css │ └── vendor.ts ├── tsConfig.json ├── webpack.config.js └── yarn.lock ├── Chapter05 ├── Example01 │ ├── index.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── photon │ │ ├── css │ │ │ ├── photon.css │ │ │ └── photon.min.css │ │ ├── fonts │ │ │ ├── photon-entypo.eot │ │ │ ├── photon-entypo.svg │ │ │ ├── photon-entypo.ttf │ │ │ └── photon-entypo.woff │ │ └── template-app │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── menu.js │ │ │ └── package.json │ ├── readme.md │ └── yarn.lock └── Example02 │ ├── build │ ├── app.js │ └── index.html │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── src │ ├── ListView.js │ ├── Navpane.js │ ├── SegmentedControl.js │ ├── Window.js │ ├── app.js │ ├── index.html │ └── style.css │ ├── webpack.config.js │ └── yarn.lock ├── Chapter06 ├── Example01 │ ├── build │ │ ├── app.js │ │ ├── index.html │ │ ├── polyfills.js │ │ ├── style.css │ │ └── vendor.js │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.service.ts │ │ ├── app.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── polyfills.ts │ │ ├── style.css │ │ └── vendor.ts │ ├── tsConfig.json │ ├── webpack.config.js │ └── yarn.lock ├── Example02 │ ├── index.html │ ├── main.js │ ├── package.json │ └── yarn.lock ├── Example03 │ ├── bin │ │ └── darwin-x64-54 │ │ │ └── Example04.node │ ├── binding.gyp │ ├── build │ │ ├── Makefile │ │ ├── Release │ │ │ ├── .deps │ │ │ │ └── Release │ │ │ │ │ ├── obj.target │ │ │ │ │ └── sum │ │ │ │ │ │ └── sum.o.d │ │ │ │ │ └── sum.node.d │ │ │ ├── .forge-meta │ │ │ ├── obj.target │ │ │ │ └── sum │ │ │ │ │ └── sum.o │ │ │ └── sum.node │ │ ├── binding.Makefile │ │ ├── config.gypi │ │ ├── gyp-mac-tool │ │ └── sum.target.mk │ ├── main.js │ ├── package.json │ ├── sum.cc │ └── yarn.lock └── Example04 │ ├── index.html │ ├── main.js │ ├── main.js.map │ ├── main.ts │ ├── package.json │ ├── tsconfig.json │ └── yarn.lock ├── Chapter07 ├── config.json ├── index.html ├── main.js ├── package.json ├── pdf.pdf ├── project.txt ├── renderer.js ├── settings.html ├── shared.js ├── style.css └── yarn.lock ├── Chapter08 ├── index.html ├── main.js ├── package.json ├── script.js └── webview.html ├── Chapter09 ├── index.css ├── index.html ├── index.js ├── license ├── package.json ├── readme.md ├── server.js ├── yarn-error.log └── yarn.lock ├── Chapter10 ├── api │ └── api.js ├── assets │ └── sw.js ├── cert.pem ├── key.pem ├── main.js ├── package.json ├── server.js ├── server.pass.key ├── views │ └── index.html └── yarn.lock ├── Chapter11 ├── calculateSum.js ├── index.css ├── index.html ├── index.js ├── npm-debug.log ├── package.json ├── readme.md ├── tests │ ├── ava.test.js │ ├── chai.test.js │ ├── spectron.test.js │ └── sum.test.js ├── yarn-error.log └── yarn.lock ├── Chapter12 ├── Readme.md ├── app │ ├── assets │ │ └── css │ │ │ └── style.css │ ├── index.html │ ├── main.js │ └── package.json ├── bower.json ├── build.js ├── build.windows.js ├── package.json ├── resources │ └── windows │ │ ├── banner.bmp │ │ ├── icon.ico │ │ ├── installer.nsi │ │ ├── installer.nsis │ │ └── setup-icon.ico └── yarn.lock ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 04/Code/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/build/app.js -------------------------------------------------------------------------------- /Chapter 04/Code/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/build/index.html -------------------------------------------------------------------------------- /Chapter 04/Code/build/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/build/polyfills.js -------------------------------------------------------------------------------- /Chapter 04/Code/build/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/build/vendor.js -------------------------------------------------------------------------------- /Chapter 04/Code/gulpfile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/package.json -------------------------------------------------------------------------------- /Chapter 04/Code/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/readme.md -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/app.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/fbsdk.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/fbsdk.service.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/home.component.html -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/home.component.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/index.html -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/loggedinguard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/loggedinguard.service.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/login.component.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/polyfills.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/profile.component.html -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/profile.component.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/style.css -------------------------------------------------------------------------------- /Chapter 04/Code/src/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/app/vendor.ts -------------------------------------------------------------------------------- /Chapter 04/Code/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/index.html -------------------------------------------------------------------------------- /Chapter 04/Code/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/main.js -------------------------------------------------------------------------------- /Chapter 04/Code/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/src/package.json -------------------------------------------------------------------------------- /Chapter 04/Code/tsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/tsConfig.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/angular-protractor/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/angular-protractor/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/angular-protractor/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/angular-protractor/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/core-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/core-js/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/core-js/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/core-js/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/github-electron/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/github-electron/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/github-electron/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/github-electron/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/jasmine/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/jasmine/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/jasmine/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/jasmine/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/node/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/node/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/node/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/selenium-webdriver/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/selenium-webdriver/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/typings/globals/selenium-webdriver/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/globals/selenium-webdriver/typings.json -------------------------------------------------------------------------------- /Chapter 04/Code/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/typings/index.d.ts -------------------------------------------------------------------------------- /Chapter 04/Code/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter 04/Code/webpack.config.js -------------------------------------------------------------------------------- /Chapter01/Example01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example01/index.html -------------------------------------------------------------------------------- /Chapter01/Example01/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example01/main.js -------------------------------------------------------------------------------- /Chapter01/Example01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example01/package.json -------------------------------------------------------------------------------- /Chapter01/Example01/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example01/readme.md -------------------------------------------------------------------------------- /Chapter01/Example02/electron-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/electron-readme.md -------------------------------------------------------------------------------- /Chapter01/Example02/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/github-markdown.css -------------------------------------------------------------------------------- /Chapter01/Example02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/index.html -------------------------------------------------------------------------------- /Chapter01/Example02/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/main.js -------------------------------------------------------------------------------- /Chapter01/Example02/markdown-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/markdown-processor.js -------------------------------------------------------------------------------- /Chapter01/Example02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/package.json -------------------------------------------------------------------------------- /Chapter01/Example02/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/readme.md -------------------------------------------------------------------------------- /Chapter01/Example02/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter01/Example02/style.css -------------------------------------------------------------------------------- /Chapter02/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/build/app.js -------------------------------------------------------------------------------- /Chapter02/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/build/index.html -------------------------------------------------------------------------------- /Chapter02/build/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/build/polyfills.js -------------------------------------------------------------------------------- /Chapter02/build/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/build/style.css -------------------------------------------------------------------------------- /Chapter02/build/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/build/vendor.js -------------------------------------------------------------------------------- /Chapter02/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/main.js -------------------------------------------------------------------------------- /Chapter02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/package.json -------------------------------------------------------------------------------- /Chapter02/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/readme.md -------------------------------------------------------------------------------- /Chapter02/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/app.component.ts -------------------------------------------------------------------------------- /Chapter02/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/app.module.ts -------------------------------------------------------------------------------- /Chapter02/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/app.ts -------------------------------------------------------------------------------- /Chapter02/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/index.html -------------------------------------------------------------------------------- /Chapter02/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/package.json -------------------------------------------------------------------------------- /Chapter02/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter02/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/style.css -------------------------------------------------------------------------------- /Chapter02/src/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/src/vendor.ts -------------------------------------------------------------------------------- /Chapter02/tsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/tsConfig.json -------------------------------------------------------------------------------- /Chapter02/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/webpack.config.js -------------------------------------------------------------------------------- /Chapter02/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter02/yarn.lock -------------------------------------------------------------------------------- /Chapter03/.env: -------------------------------------------------------------------------------- 1 | NODE_ENV=development -------------------------------------------------------------------------------- /Chapter03/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/build/app.js -------------------------------------------------------------------------------- /Chapter03/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/build/index.html -------------------------------------------------------------------------------- /Chapter03/build/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/build/polyfills.js -------------------------------------------------------------------------------- /Chapter03/build/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/build/style.css -------------------------------------------------------------------------------- /Chapter03/build/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/build/vendor.js -------------------------------------------------------------------------------- /Chapter03/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/main.js -------------------------------------------------------------------------------- /Chapter03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/package.json -------------------------------------------------------------------------------- /Chapter03/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/readme.md -------------------------------------------------------------------------------- /Chapter03/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/app.component.ts -------------------------------------------------------------------------------- /Chapter03/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/app.module.ts -------------------------------------------------------------------------------- /Chapter03/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/app.ts -------------------------------------------------------------------------------- /Chapter03/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/index.html -------------------------------------------------------------------------------- /Chapter03/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/package.json -------------------------------------------------------------------------------- /Chapter03/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter03/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/style.css -------------------------------------------------------------------------------- /Chapter03/src/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/src/vendor.ts -------------------------------------------------------------------------------- /Chapter03/tsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/tsConfig.json -------------------------------------------------------------------------------- /Chapter03/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/webpack.config.js -------------------------------------------------------------------------------- /Chapter03/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter03/yarn.lock -------------------------------------------------------------------------------- /Chapter05/Example01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/index.html -------------------------------------------------------------------------------- /Chapter05/Example01/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/main.js -------------------------------------------------------------------------------- /Chapter05/Example01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/package-lock.json -------------------------------------------------------------------------------- /Chapter05/Example01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/package.json -------------------------------------------------------------------------------- /Chapter05/Example01/photon/css/photon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/css/photon.css -------------------------------------------------------------------------------- /Chapter05/Example01/photon/css/photon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/css/photon.min.css -------------------------------------------------------------------------------- /Chapter05/Example01/photon/fonts/photon-entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/fonts/photon-entypo.eot -------------------------------------------------------------------------------- /Chapter05/Example01/photon/fonts/photon-entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/fonts/photon-entypo.svg -------------------------------------------------------------------------------- /Chapter05/Example01/photon/fonts/photon-entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/fonts/photon-entypo.ttf -------------------------------------------------------------------------------- /Chapter05/Example01/photon/fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /Chapter05/Example01/photon/template-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/template-app/app.js -------------------------------------------------------------------------------- /Chapter05/Example01/photon/template-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/template-app/index.html -------------------------------------------------------------------------------- /Chapter05/Example01/photon/template-app/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/template-app/js/menu.js -------------------------------------------------------------------------------- /Chapter05/Example01/photon/template-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/photon/template-app/package.json -------------------------------------------------------------------------------- /Chapter05/Example01/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/readme.md -------------------------------------------------------------------------------- /Chapter05/Example01/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example01/yarn.lock -------------------------------------------------------------------------------- /Chapter05/Example02/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/build/app.js -------------------------------------------------------------------------------- /Chapter05/Example02/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/build/index.html -------------------------------------------------------------------------------- /Chapter05/Example02/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/main.js -------------------------------------------------------------------------------- /Chapter05/Example02/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/package-lock.json -------------------------------------------------------------------------------- /Chapter05/Example02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/package.json -------------------------------------------------------------------------------- /Chapter05/Example02/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/readme.md -------------------------------------------------------------------------------- /Chapter05/Example02/src/ListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/ListView.js -------------------------------------------------------------------------------- /Chapter05/Example02/src/Navpane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/Navpane.js -------------------------------------------------------------------------------- /Chapter05/Example02/src/SegmentedControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/SegmentedControl.js -------------------------------------------------------------------------------- /Chapter05/Example02/src/Window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/Window.js -------------------------------------------------------------------------------- /Chapter05/Example02/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/app.js -------------------------------------------------------------------------------- /Chapter05/Example02/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/index.html -------------------------------------------------------------------------------- /Chapter05/Example02/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/src/style.css -------------------------------------------------------------------------------- /Chapter05/Example02/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/webpack.config.js -------------------------------------------------------------------------------- /Chapter05/Example02/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter05/Example02/yarn.lock -------------------------------------------------------------------------------- /Chapter06/Example01/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/build/app.js -------------------------------------------------------------------------------- /Chapter06/Example01/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/build/index.html -------------------------------------------------------------------------------- /Chapter06/Example01/build/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/build/polyfills.js -------------------------------------------------------------------------------- /Chapter06/Example01/build/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/build/style.css -------------------------------------------------------------------------------- /Chapter06/Example01/build/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/build/vendor.js -------------------------------------------------------------------------------- /Chapter06/Example01/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/main.js -------------------------------------------------------------------------------- /Chapter06/Example01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/package-lock.json -------------------------------------------------------------------------------- /Chapter06/Example01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/package.json -------------------------------------------------------------------------------- /Chapter06/Example01/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/readme.md -------------------------------------------------------------------------------- /Chapter06/Example01/src/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/app.component.html -------------------------------------------------------------------------------- /Chapter06/Example01/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/app.component.ts -------------------------------------------------------------------------------- /Chapter06/Example01/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/app.module.ts -------------------------------------------------------------------------------- /Chapter06/Example01/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/app.service.ts -------------------------------------------------------------------------------- /Chapter06/Example01/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/app.ts -------------------------------------------------------------------------------- /Chapter06/Example01/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/index.html -------------------------------------------------------------------------------- /Chapter06/Example01/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/package.json -------------------------------------------------------------------------------- /Chapter06/Example01/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter06/Example01/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/style.css -------------------------------------------------------------------------------- /Chapter06/Example01/src/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/src/vendor.ts -------------------------------------------------------------------------------- /Chapter06/Example01/tsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/tsConfig.json -------------------------------------------------------------------------------- /Chapter06/Example01/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/webpack.config.js -------------------------------------------------------------------------------- /Chapter06/Example01/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example01/yarn.lock -------------------------------------------------------------------------------- /Chapter06/Example02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example02/index.html -------------------------------------------------------------------------------- /Chapter06/Example02/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example02/main.js -------------------------------------------------------------------------------- /Chapter06/Example02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example02/package.json -------------------------------------------------------------------------------- /Chapter06/Example02/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example02/yarn.lock -------------------------------------------------------------------------------- /Chapter06/Example03/bin/darwin-x64-54/Example04.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/bin/darwin-x64-54/Example04.node -------------------------------------------------------------------------------- /Chapter06/Example03/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/binding.gyp -------------------------------------------------------------------------------- /Chapter06/Example03/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/Makefile -------------------------------------------------------------------------------- /Chapter06/Example03/build/Release/.deps/Release/obj.target/sum/sum.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/Release/.deps/Release/obj.target/sum/sum.o.d -------------------------------------------------------------------------------- /Chapter06/Example03/build/Release/.deps/Release/sum.node.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/Release/.deps/Release/sum.node.d -------------------------------------------------------------------------------- /Chapter06/Example03/build/Release/.forge-meta: -------------------------------------------------------------------------------- 1 | x64--54 -------------------------------------------------------------------------------- /Chapter06/Example03/build/Release/obj.target/sum/sum.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/Release/obj.target/sum/sum.o -------------------------------------------------------------------------------- /Chapter06/Example03/build/Release/sum.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/Release/sum.node -------------------------------------------------------------------------------- /Chapter06/Example03/build/binding.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/binding.Makefile -------------------------------------------------------------------------------- /Chapter06/Example03/build/config.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/config.gypi -------------------------------------------------------------------------------- /Chapter06/Example03/build/gyp-mac-tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/gyp-mac-tool -------------------------------------------------------------------------------- /Chapter06/Example03/build/sum.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/build/sum.target.mk -------------------------------------------------------------------------------- /Chapter06/Example03/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/main.js -------------------------------------------------------------------------------- /Chapter06/Example03/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/package.json -------------------------------------------------------------------------------- /Chapter06/Example03/sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/sum.cc -------------------------------------------------------------------------------- /Chapter06/Example03/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Building-Cross-Platform-Desktop-Applications-with-Electron/HEAD/Chapter06/Example03/yarn.lock -------------------------------------------------------------------------------- /Chapter06/Example04/index.html: -------------------------------------------------------------------------------- 1 |