this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

update instructions

pomdtr 8867b739 9b5b5b8a

+13 -2
+13 -2
example/.github/copilot-instructions.md
··· 144 144 db.close(); 145 145 ``` 146 146 147 - ## Imports 147 + ## Dependencies 148 + 149 + Smallweb supports importing dependencies from urls, or npm/jsr packages. You can use the `npm:` prefix to import npm packages. 150 + 151 + ```ts 152 + // Importing from npm 153 + import { Hono } from "npm:hono"; 154 + 155 + // Importing from jsr 156 + import { Hono } from "jsr:@hono/hono" 148 157 149 - Use `https://esm.sh` for npm and Deno dependencies to ensure compatibility on server and browser 158 + // Importing from a URL 159 + import { Hono } from "https://esm.sh/hono" 160 + ``` 150 161 151 162 ## Secrets / Environment Variables 152 163