on node.js, and in what cases you would use it instead of rails

  • single page apps: you can server them as static content (HTML templates and JS files that don’t change much) from a super-fast static server
  • the js in that page will talk to an API that focus in just deal with Json objects back and forth (in this case node.js is super-slim and optimized to lots of IO calls)

Leave a Reply

Your email address will not be published. Required fields are marked *