buntralino-cli
Version:
Buntralino unites Bun and Neutralino.js to make a simpler, lighter alternative to Electron and NW.js. Use Neutralino.js API at client and send harder tasks to Bun while keeping your development process easy.
31 lines (28 loc) • 1.2 kB
text/typescript
import * as buntralino from 'buntralino-client';
// Sample Bun interaction
(async () => {
await buntralino.ready;
const TIMEOUT = {};
const response = await Promise.race([
buntralino.run('sayHello', {
message: 'Hello, Buntralino!'
}),
new Promise(resolve => setTimeout(() => resolve(TIMEOUT), 5000))
]);
const checkDiv = document.getElementById('theBunCheck')!;
if (response === TIMEOUT) {
console.error('No connection in 5 seconds');
checkDiv.innerHTML = '⛔ ' + response;
checkDiv.classList.add('error');
} else if (typeof response === 'string') {
console.log(response);
checkDiv.innerHTML = '✅ ' + response;
checkDiv.classList.add('success');
} else {
console.error('Got unknown response from Bun:', response);
checkDiv.innerHTML = 'Got unknown response from Bun 🤷 Did you change the method on Bun side?';
checkDiv.classList.add('warning');
}
})();
(window as any).openDocs = () => Neutralino.os.open('https://buntralino.github.io/');
(window as any).openNeutralinoDocs = () => Neutralino.os.open('https://neutralino.js.org/docs/api/overview');