UNPKG

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.

28 lines (25 loc) 826 B
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Buntralino+Vite sample app</title> <link rel="stylesheet" href="/src/styles/index.css"> </head> <body> <div id="neutralinoapp"> <img src="/icon.png" class="logo" alt="Buntralino logo" /> <h1>Buntralino + Vite</h1> <div> <a href="#" onclick="openDocs();">Docs for Buntralino</a> &middot; <a href="#" onclick="openNeutralinoDocs();">Docs for Neutralino.js API</a> <a href="#" onclick="openViteDocs();">Docs for Vite</a> </div> </div> <div id="theBunCheck"> Checking Buntralino connection… <span class="rotate">🐰</span> </div> <!-- Your app's bundled scripts --> <script type="module" src="/src/neutralino/index.ts"></script> </body> </html>