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.
32 lines (29 loc) • 933 B
HTML
<html>
<head>
<meta charset="UTF-8">
<title>Buntralino sample app</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div id="neutralinoapp">
<img src="/icons/Buntralino.png" class="logo" alt="Buntralino logo" />
<h1>Buntralino</h1>
<div>
<a href="#" onclick="openDocs();">Docs for Buntralino</a> ·
<a href="#" onclick="openNeutralinoDocs();">Docs for Neutralino.js API</a>
</div>
<div id="theBunCheck">
Checking Buntralino connection…
<span class="rotate">🐰</span>
</div>
</div>
<!-- Neutralino.js client. This file is gitignored,
because `neu update` typically downloads it.
Avoid copy-pasting it.
-->
<script src="/js/neutralino.js"></script>
<!-- Your app's bundled scripts -->
<script src="/js/bundle.js"></script>
</body>
</html>