18 lines
798 B
JavaScript
18 lines
798 B
JavaScript
const {remote, shell} = require('electron')
|
|
const path = require('path')
|
|
const electronPath = path.relative(process.cwd(), remote.process.execPath)
|
|
|
|
Array.from(document.querySelectorAll('a[href]')).forEach(link => {
|
|
const url = link.getAttribute('href')
|
|
link.addEventListener('click', (e) => {
|
|
e.preventDefault()
|
|
shell.openExternal(url)
|
|
})
|
|
})
|
|
|
|
document.querySelector('.electron-version').innerText = `Electron v${process.versions.electron}`
|
|
document.querySelector('.chrome-version').innerText = `Chromium v${process.versions.chrome}`
|
|
document.querySelector('.node-version').innerText = `Node v${process.versions.node}`
|
|
document.querySelector('.v8-version').innerText = `v8 v${process.versions.v8}`
|
|
|
|
document.querySelector('.command-example').innerText = `${electronPath} path-to-app`
|