Started the base Electron project
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-05-25 14:28:19 -04:00
parent 9351cd6266
commit 6e6fa2b757
15 changed files with 9459 additions and 129 deletions

View File

@ -0,0 +1,9 @@
si = require('systeminformation')
window.onload = () ->
si.cpu()
.then((data) ->
console.log(data)
).catch((error) ->
console.error(error)
)

View File

@ -0,0 +1,2 @@
@loadPage = (pagePath) ->
window.location.href = pagePath + '.html'