Skip to main content

Deno Web Serve

Template repo with this structure: https://github.com/pagoru/deno-web-serve-template

File structure

  • /.env
  • /dev.ts
  • /main.ts
  • /public/index.html
  • /src/main.tsx
  • /src/assets/…

.env

ENVIRONMENT=DEVELOPMENT

dev.ts

import { config } from '$deno/dotenv/mod.ts';

const env = await config();
Object.keys(env).forEach(key => Deno.env.set(key, env[key]));

await import('./main.ts');

main.ts

import { webServe } from 'https://deno.land/x/deno_web_serve/mod.ts';

await webServe();

/public/index.html

<html>
    ...
    <!-- SCRIPT_ENVS -->
    <script type="text/javascript" src="/bundle.js"></script>
    <!-- SCRIPT_FOOTER -->
</html>