15 lines
412 B
JavaScript
15 lines
412 B
JavaScript
console.log("hello world! yooo");
|
|
|
|
const information = document.getElementById('info');
|
|
information.innerText = `This app is using Chrome (v${versions.chrome()}), Node.js (v${versions.node()}), and Electron (v${versions.electron()})`;
|
|
|
|
async function func() {
|
|
const response = await versions.ping();
|
|
console.log(response);
|
|
return response;
|
|
}
|
|
|
|
func().then(x => {
|
|
console.log("is this working? ", x);
|
|
});
|
|
|