I'm not very updated in the event-driven/concurrency area in node.js. I wonder, is it possible that node.js would replace Ruby on Rails completely in the future?
Or is it more like an extension to Ruby on Rails for the real time features?
|
I'm not very updated in the event-driven/concurrency area in node.js. I wonder, is it possible that node.js would replace Ruby on Rails completely in the future? Or is it more like an extension to Ruby on Rails for the real time features? |
|||||||||||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I'm not sure exactly what you mean by "could replace". Ruby on Rails and Node.js really have nothing to do with each other, so it doesn't make sense to compare them. Ruby is a programming language and Rails is a web application framework. Node.js is neither a language nor an application framework, it's an asynchronous I/O library. There are asynchronous I/O libraries for Ruby as well, like EventMachine or Cool.IO for example. And of course there's Twisted for Python, Async, Event and EV for Perl, Rx for .NET, Async Computation Expressions for F# and libaio, libevent and libev for C. (BTW: Node.js is actually implemented using libev.) Node.js isn't even the only such library for ECMAScript, there's a port of Rx for ECMAScript as well. It would make much more sense to compare those to Node.js than Ruby on Rails. (If you really want to compare Ruby on Rails to something, compare it to Express.js, which is a web framework built on top of Node.js. Although it actually is more akin to Sinatra or maybe Padrino than Rails. Otherwise the comparison doesn't make sense: the only thing that Ruby on Rails and Node.js have in common is that both are Turing-complete, and in some sense everything that is Turing-complete can replace everything else, but that's not a particularly useful result.) So, Node.js really is nothing special. Evented I/O has been around for a very long time, and there are many stable and mature (much more so than Node.js, in fact!) implementations for just about any language on earth. In fact, Node.js itself actually uses libev and libeio. The thing that makes Node.js different from all those other libraries is ECMAScript. Actually, the thing that makes Node.js so great is that ECMAScript is crap, or more precisely that the ECMAScript standard library is crap. In ECMAScript, you practically can't do anything: you can't read files, load scripts, access the network. You can't even access the friggin' web, which is kind of ironic for a web scripting language. When you are within the event loop, you cannot make any blocking calls. However, pretty much the entire Ruby IO, File and Dir classes, as well as the networking and database libraries and so on are all mostly synchronous and blocking. (And the same is true for pretty much all of the other languages as well.) So, when you write code in EventMachine or Cool.IO or Twisted, you have to be very careful which methods you call and which libraries you use in order to avoid accidentally making blocking I/O calls. In ECMAScript, you cannot accidentally make blocking I/O calls, because you simply can't make any I/O calls at all: there are no I/O functions in the ECMAScript standard library. Which means that any I/O functions you might want to call, have to be specifically implemented for Node.js. And obviously, if you implement it specifically for Node.js, you do it in an asynchronous fashion. That's what distinguishes Node.js from, say, EventMachine or Twisted: the fact that the entire I/O library was built from the ground up for Node.js. If you wanted to do that for EventMachine, you would first have to rip out the entire existing Ruby I/O library and then rebuild it from scratch. In ECMAScript, there's nothing to rip out and nothing to rebuild. You simply start with the "right" design from day one. And that's exactly what Ryan did. Another difference between EventMachine and Node.js is that Ruby programmers are typically trained in a synchronous mindset. ECMAScript programmers however, usually start their career with the DOM, which is completely asynchronous. (Ever wondered what the A in AJAX stands for? Asynchronous JavaScript and XML!) So, they never even know that something like synchronous I/O even exists! It's like that old joke about learning Chinese: it can't be that hard, even two year old Chinese kids speak it … |
|||||||||||||||||||
|
|
To make it short: Yes.* *Node.js + webapp-stack (like for example express.js) can be used for web development and so it could replace rails for your web development needs. |
|||||||||||||
|
|
I'm not sure how many people are paying attention, but there are some kick-ass node frameworks out there right now: Railway.js - a full stack MVC framework inspired by Rails3, with a revolutionary ORM a.k.a JugglingDB which handles multiple databases of any kind. No more agonizing over whether MongoDB or Postgres is the best fit for your app. Mix your SQL and NoSQL easily There's also Tower.js - Similar to Railway but with additional application structure for client-side MVC, which is sweet because you can share server and client code and stay DRY. It also comes bundled with Design.IO, which gets you live browser updates as you code. Very cool. These are probably fairer comparisons to make with RoR. They both provide a lot of the same functionality, including I18n support, ORM, middleware, plugins, package management, routes, templates, mailers etc. Neither is as well-documented or battle-tested as Rails. But they do get you very far considering their youth and small footprint, and in some ways surpasses Rails in core functionality. Both of these fledgling Rails Killers are built on top of Express, an excellent, fast and hugely popular node.js REST framework, which is not unlike Sinatra with a little Padrino mixed in It's worth mentioning that the node ecosystem for extensions/plugins are thriving right now as well. You can have file uploads, image/audio/video processing, authentication, pagination, etc. I'm currently just playing around with it but so far I'm not missing to much. Got Jade to replace Slim, Stylus to replace Sass, Passport.js instead of Devise, Formidable instead of Paperclip (or DropUp for dragging image uploads) People bitch about node not having any libs but that seems to be changing fast. In response to your original question as to whether Rails will soon be "over", Giles Bowkett recently wrote an entertaining rant on the subject. |
|||||||||
|
|
I think the spirit of the question is, "Is node.js the next big thing?" I truly think the answer is yes. Node.js or a similar server-side javascript framework could have the ability to be "the" global language for web development. Lets not pretend here. Most developers are looking for the next big thing when it comes to languages and frameworks. It's attractive to know the languages and work with projects that have huge community support, and have mass appeal. Time is a finite resource, so sometimes as developers we need to pick and choose our battles. In that spirit, I think Node.js will be a major player. Since Javascript is already the language of all major browsers, it's not going anywhere. So many of the cool apps today are already using Ajax, jQuery, HTML5 for improved user experience, so it only makes sense to take that common language and use it on the server too. With all of that said, I honestly don't care that much for Javascript syntax, it feels like delimiter soup. But I can definitely see the benefit of having a common front-end, back-end language to help reduce duplication, and speed up application development. Also with Google, Yahoo, and Microsoft all so interested in the technology, I think this is the way things are going whether we like it or not. |
|||
|
node.js and Ruby on Rails are two completely different things, Rails being a framework for web applications. Node.js would never "replace" Ruby on Rails because they're apples and oranges. You could create a Rails-style web-application framework on top of node.js (like we have CakePHP for PHP), and in that case node.js would be "replacing" Ruby. Long story short, node.js offers some interesting scalability features but neither Ruby nor Rails are going away anytime soon. |
|||||||||
|
|
There's a lot of excitement about Node.js at the moment because of its evented IO architecture and its superior performance at handling concurrent connections. For traditional language environments like C, Java, Ruby, etc evented IO is generally superior to either of serialized IO or threaded IO for performance and scalability. However, languages like Erlang can boast vastly superior IO performance using concurrent lightweight processes. But Node.js is just an evented Server not a web framework. I have a feeling that what will eventually "replace" Rails will be Async Rails. Using Ruby 1.9 fibers and Event Machine (Ruby's closest analogue of Node.js) Rails can be made fully asynchronous and boosting performance and scalability of a single instance. So no need to rewrite Rails in Javascript to get async IO. It's already available. |
|||||
|