Hacker News new | ask | show | jobs
by wldlyinaccurate 871 days ago
I deployed my first non-trivial Deno app to production in 2023. There were some teething issues with learning to keep the lock file in sync, especially in a repo with multiple entry points each with separate lock files. Some of the granular permissions stuff didn't work how I expected, to the point where I almost gave up and just allowed network to/from all hosts. But overall the experience was good, and I have positive feelings towards Deno. I look forward to seeing where they take it.
1 comments

I tend to put a shebang line on Deno scripts intended to be run... This has the permissions right there in the script.

Alternatively, like in my ~/bin, I'll put a shell script without a file extension to make it easier on myself.