this post was submitted on 16 Jul 2023
700 points (92.3% liked)
Programmer Humor
32410 readers
998 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Afaik JavaScript only runs in a browser. If you want to make a desktop app your only option is something like electron.
For example, you can't make the equivalent of a bash script with JS, but it's trivial with python. I don't think you can do system calls at all with JS.
There are non-browser JavaScript implementations, the most well-known of which is node.js
Nodejs is a works great for that.