···144144db.close();
145145```
146146147147-## Imports
147147+## Dependencies
148148+149149+Smallweb supports importing dependencies from urls, or npm/jsr packages. You can use the `npm:` prefix to import npm packages.
150150+151151+```ts
152152+// Importing from npm
153153+import { Hono } from "npm:hono";
154154+155155+// Importing from jsr
156156+import { Hono } from "jsr:@hono/hono"
148157149149-Use `https://esm.sh` for npm and Deno dependencies to ensure compatibility on server and browser
158158+// Importing from a URL
159159+import { Hono } from "https://esm.sh/hono"
160160+```
150161151162## Secrets / Environment Variables
152163