Does anyone have a deno hello world project?
edit: yes. just remix this project
old: I found this: https://support.glitch.com/t/texa-deno-web-framework/32596?u=_trYo. The author of Texa here.
Don’t use Texa, it is long outdated and is no longer maintained.
edit: oh apparently it’s a remix of ~hello-deno. so yeah just remix this project.
yeah but you got deno working on glitch right? looking at the code, apparently it's just `curl -fsSL https://deno.land/x/install/install.sh | sh` and this in package json:
{
...
"main": "server.ts",
"scripts": {
"start": "/app/.deno/bin/deno run --allow-net --allow-env --allow-read server.ts"
},
"dependencies": {},
"engines": {},
...
}