Curious: Why do people choose JavaScript/node.js to write command line apps over traditional languages for that task like python or ruby?
Refusing to verify myself: I am liz on Keybase.io
11–20 of 114 posts
Re: Refusing to verify myself: I am liz on Keybase.io
#12[deleted]
Re: Refusing to verify myself: I am liz on Keybase.io
#13[deleted]
More importantly, 12.04 is the most current Ubuntu LTS. It's definitely still around now.
Re: Refusing to verify myself: I am liz on Keybase.io
#14Curious: Why do people choose JavaScript/node.js to write command line apps over traditional languages for that task like python or ruby?
Re: Refusing to verify myself: I am liz on Keybase.io
#15Curious: Why do people choose JavaScript/node.js to write command line apps over traditional languages for that task like python or ruby?
EDIT: also wanted to add that node exposes your standard POSIX-style interfaces to the OS, so there's really no reason it can't be a general purpose replacement for other languages for writing system tools.
Re: Refusing to verify myself: I am liz on Keybase.io
#16Re: Refusing to verify myself: I am liz on Keybase.io
#17Curious: Why do people choose JavaScript/node.js to write command line apps over traditional languages for that task like python or ruby?
Why do people choose python or ruby to write command line apps over traditional languages like BASH, PERL, and C?
I've used zsh as my interactive shell for years, but I always still write bash scripts instead of zsh scripts. You can count on bash scripts running just about anywhere.
Re: Refusing to verify myself: I am liz on Keybase.io
#18[deleted]
Re: Refusing to verify myself: I am liz on Keybase.io
#19Curious: Why do people choose JavaScript/node.js to write command line apps over traditional languages for that task like python or ruby?
npm is a fantastic package manager that integrates very well with github, and node -- in the opinion of a lot of people -- has a rather intuitive system for installing and loading third party modules. EDIT: also wanted to add that node exposes your standard POSIX-style interfaces to the OS, so there's really no reason it can't be a general purpose replacement for other languages for writing system tools.
Perl/Python come installed by default in the majority of distros (and Mac OSX)
They're also more mature at this stage
So, yeah, node may one day be as supported as them, but today it is at a disadvantage.