If you like TypeScript/JS on the backend: I highly recommend giving Deno a try! Deno knows TypeScript out of the box, and it also contains full package management and a formatter. You can even compile your script to an executable!
Also very importantly: it has actual permissions. You can specify (or let it ask you) what kind of things a script is allowed to do.
To me it's just a way better Node and it is, in fact, made by the same creator as Node!
If you wanna try it, check out https://deno.com/ :D
Some stupid example:
( in "main.ts" )
await Deno.writeTextFile("hello", "Hello, World!");
( in terminal, "-RW=." gives read write access to current folder only )
deno run -RW=. main.tsAlso: SpaceHey doesn't let me type out the name of the JS programming language in blogs due to some odd filter :)
Comments
Displaying 0 of 0 comments ( View all | Add Comment )