mirror of
https://github.com/kunkunsh/kunkun-ext-serve.git
synced 2025-04-03 18:16:42 +00:00
9 lines
271 B
TypeScript
9 lines
271 B
TypeScript
import { serveDir } from 'jsr:@std/http/file-server';
|
|
|
|
const server = Deno.serve({ port: 0 }, (req: Request) => {
|
|
return serveDir(req, {
|
|
fsRoot: '/Users/hk/Dev/others/excalidraw/excalidraw-app/build'
|
|
});
|
|
});
|
|
console.error('Server started at port', server.addr.port);
|