Node.js is good for solving problems I don’t have
41–50 of 61 posts
Re: Node.js is good for solving problems I don’t have
#42Exactly, node is useful for solving problems that you don't have. So you wouldn't use node for them, then. The answer to your own question is your own statement. Node makes it possible to do completely new things that would be difficult to do otherwise. I take exception to this statement: "Node enthusiasts are front-end coders not wanting to do server coding." The number of engineers who only do server-side programmi…
"Node has been a blessing for me, as a frontend engineer, because I can finally code servers in the same mindset as I write client-side javascript. " That was precisely the author's point. You'd rather stick with what you know then bother to deal with traditional server side techniques.
Node.js works for me.
I don't think much else needs to be said.
Re: Node.js is good for solving problems I don’t have
#43Earlier quoted context omitted.
"Node has been a blessing for me, as a frontend engineer, because I can finally code servers in the same mindset as I write client-side javascript. " That was precisely the author's point. You'd rather stick with what you know then bother to deal with traditional server side techniques.
Uhmm, I've been writing server side code for the last decade. I've also been writing front facing code for just as long. JavaScript works well for Node because it is a language that has evolved to be asynchronous. Not because some front-end web monkey n00bz know JavaScript. Although that is certainly a plus. Node.JS shines when you need to write network applications. It was advertised for this purpose by its creator.…
Wouldn't the traditional way to do it server-side be to just write it in C/C++ or Java with a thread pool? Or if you prefer the evented model, Python+Twisted isn't old enough to really be traditional, but is pretty widespread; and some Java server-side apps have been moving to an async model as well.
Re: Node.js is good for solving problems I don’t have
#44Exactly, node is useful for solving problems that you don't have. So you wouldn't use node for them, then. The answer to your own question is your own statement. Node makes it possible to do completely new things that would be difficult to do otherwise. I take exception to this statement: "Node enthusiasts are front-end coders not wanting to do server coding." The number of engineers who only do server-side programmi…
Parallel requests and async callbacks have been hallmarks of server programming for decades. You'd have to be pretty young to think this is novel. Good protocol library designers have always exposed some mechanism for kernel-assisted polling (such as the file descriptor for the TCP socket of an LDAP connection). So, Node solves problems we've already solved, only now using the second most poorly designed common produ…
Nobody knowledgeable has said that async coding is novel. What matters is that node.js is a simple(r) and effective means of writing asynchronous applications.
Re: Node.js is good for solving problems I don’t have
#45The whole website is a PR/FUD base for Mark Logic. Check their Wikipedia page too. http://en.wikipedia.org/wiki/MarkLogic I guess they're tyring "to fully utilize the potential of the internet".
Actually they mention Mark Logic in the article a couple of times, but what they say totally stands (at least as an argument) on its own. I could care less about Mark Logic. I do care about what the article says, and I agree with it.
Re: Node.js is good for solving problems I don’t have
#46Earlier quoted context omitted.
Parallel requests and async callbacks have been hallmarks of server programming for decades. You'd have to be pretty young to think this is novel. Good protocol library designers have always exposed some mechanism for kernel-assisted polling (such as the file descriptor for the TCP socket of an LDAP connection). So, Node solves problems we've already solved, only now using the second most poorly designed common produ…
Right, that's why most servers nowadays are written in this mystery platform that you failed to mention.
Re: Node.js is good for solving problems I don’t have
#47Re: Node.js is good for solving problems I don’t have
#48Earlier quoted context omitted.
"Node has been a blessing for me, as a frontend engineer, because I can finally code servers in the same mindset as I write client-side javascript. " That was precisely the author's point. You'd rather stick with what you know then bother to deal with traditional server side techniques.
Uhmm, I've been writing server side code for the last decade. I've also been writing front facing code for just as long. JavaScript works well for Node because it is a language that has evolved to be asynchronous. Not because some front-end web monkey n00bz know JavaScript. Although that is certainly a plus. Node.JS shines when you need to write network applications. It was advertised for this purpose by its creator.…
Re: Node.js is good for solving problems I don’t have
#49Then don't eat them.
Re: Node.js is good for solving problems I don’t have
#50Earlier quoted context omitted.
I use node for new cutting edge things which Django and Python can handle, but not as easily as node. Like what?
Like massive concurrency? Websockets?
Once you reach into realms where the label "massive" comes into play the importance of per-host performance is usually dwarfed by attributes like robustness and maturity.