Skip to main content
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
23%
Published
4 months ago (0.0.4)
Package root>README.md
# Sqlite Explorer ![screenshot](./assets/screenshot.png) ## Setup Rename `.env.template` to `.env` and update the values. ## Commands - `deno task dev`: start development server - `deno task publish`: publish to jsr (ignore the warnings) - [jsx is not supported on jsr](https://github.com/jsr-io/jsr/issues/24), but it works if you use the `/** @jsxImportSource hono/jsx` pragma on all jsx files ## Installation ### Val.town ```ts import { createApp } from "jsr:@pomdtr/val-town-sqlite-explorer@0.0.3"; // the `valtown` env variable will be used as a token const app = createApp(); export default app.fetch; ``` ### Deno Deploy / Smallweb ```ts import { createApp } from "jsr:@pomdtr/val-town-sqlite-explorer@0.0.3"; const app = createApp({ // the token is required for the app to work token: Deno.env.get("VALTOWN_TOKEN"), }); export default app; ```