|
|
|
|
|
by IggleSniggle
2164 days ago
|
|
my team (in a large enterprise) uses js for scripts using a shebang interpreter declaration, eg ```
#!/use/bin/env node console.log("hello cli")
``` While it does depend on node, and there are arguably better crossplatform languages for this purpose, it is a zero-tool chain use case that is very convenient for us. |
|