Sentry/assets/coffee/index.coffee
Gregory Ballantine 6e6fa2b757
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Started the base Electron project
2022-05-25 14:28:19 -04:00

10 lines
168 B
CoffeeScript

si = require('systeminformation')
window.onload = () ->
si.cpu()
.then((data) ->
console.log(data)
).catch((error) ->
console.error(error)
)