We pivoted from being a Drupal shop to being a Node.js shop just over a year ago. I don't think a single one of us has regretted that decision.
Our only regret now is not having moved to node.js sooner.
11–16 of 16 posts
We pivoted from being a Drupal shop to being a Node.js shop just over a year ago. I don't think a single one of us has regretted that decision.
Our only regret now is not having moved to node.js sooner.
We pivoted from being a Drupal shop to being a Node.js shop just over a year ago. I don't think a single one of us has regretted that decision.
Having worked quite a bit in the Drupal world, since 4.6, I demand more info :) Node and Drupal are completely different beasts. Did you write a new system built on Node, that duplicates what you get with Drupal? Is any of your code public, so others can look into it?
Come on, let's stop the Node.js ridiculous hype already. 1. It's JavaScript! JavaScript is a terrible language. The fact that you need to read "JavaScript: The GOod Parts" in order to use the damn thing is an indicator of that. I don't care that it's supposedly "lispy." 2. Code re-use at every level Does any project actually do this? Is there any sort of front-end library that actually works both in Node and in the b…
Come on, let's stop the Node.js ridiculous hype already. 1. It's JavaScript! JavaScript is a terrible language. The fact that you need to read "JavaScript: The GOod Parts" in order to use the damn thing is an indicator of that. I don't care that it's supposedly "lispy." 2. Code re-use at every level Does any project actually do this? Is there any sort of front-end library that actually works both in Node and in the b…
I too hate Javascript, but mostly because it is not a language suited to go above a few houndred lines of code -- it is awesome to quickly add some interaction to a website. That said, Node.js is really well designed. I just wish it was done with some other less dynamic language.
But with a little forethought as you write your code, you can write very complex programs with JavaScript and still have a very readable code-base.
Come on, let's stop the Node.js ridiculous hype already. 1. It's JavaScript! JavaScript is a terrible language. The fact that you need to read "JavaScript: The GOod Parts" in order to use the damn thing is an indicator of that. I don't care that it's supposedly "lispy." 2. Code re-use at every level Does any project actually do this? Is there any sort of front-end library that actually works both in Node and in the b…
re: #1 - JavaScript is a very accessible language, and as such, there is a TON of bad code and examples. The fact that people write bad code doesn't make it a bad language, that is your opinion of the language and you are entitled to that but I would argue that opinion. Many people write high-quality code using JavaScript every day, and it can be a very elegant language.
I'm not saying you can't write good, elegant code in JS, I'm just saying that you have to fight the language to do it.
Come on, let's stop the Node.js ridiculous hype already. 1. It's JavaScript! JavaScript is a terrible language. The fact that you need to read "JavaScript: The GOod Parts" in order to use the damn thing is an indicator of that. I don't care that it's supposedly "lispy." 2. Code re-use at every level Does any project actually do this? Is there any sort of front-end library that actually works both in Node and in the b…
I too hate Javascript, but mostly because it is not a language suited to go above a few houndred lines of code -- it is awesome to quickly add some interaction to a website. That said, Node.js is really well designed. I just wish it was done with some other less dynamic language.
I also think that rather than passing in callbacks, functions that do I/O should return Deferreds which allow for more elegant error handling and better flow control.