x/crate@v1.2.0/README.md
const App = {
native: true,
title: "crate",
width: 720,
height: 480,
directory: "./src",
routes: {
"/": "./index.html",
"/redirect": "https://crate.land"
}
}
import Crate from "https://crate.land/mod";
const crate = new Crate();
crate.serve(App);
<html>
<main>
hello from index.html!
<br/>
<Link to="https://crate.land/deno">
Built with Crate!
</Link>
</main>
</html>