📝 Edit page
➕ Add page
Code
Enviroment variables
const env = Deno.env.toObject()
const PORT = env.PORT || 4000
const HOST = env.HOST || '127.0.0.1'
Browser vs CLI
From 1.7 release notes.
Use
typeof Deno !== "undefined"
to determine if you are running in Deno,
and use
typeof document !== "undefined"
to determine if the DOM is available or not.