Node.js: the good, the bad, the ugly - why the hell would you use it?
1–7 of 7 posts
Re: Node.js: the good, the bad, the ugly - why the hell would you use it?
#2Re: Node.js: the good, the bad, the ugly - why the hell would you use it?
#3Do not forget that the raw speed of the V8 (not to mention C++ modules for more speedup) outperforms other current scripting languages like ruby.
Re: Node.js: the good, the bad, the ugly - why the hell would you use it?
#4It seems the author is specifically talking about ORMs. I have not used them in Node.js so maybe they are immature. Saying "don't use Node.js ORMs" is very different to "don't use Node.js with relational DBs". The former may be correct, but the latter certainly is not.
Re: Node.js: the good, the bad, the ugly - why the hell would you use it?
#5I strongly disagree with not using Node.js for "server-side web app with relational DB behind". I have used both the PostgreSQL and MySQL modules and they do just about everything you need. There is a module called "any-db" which makes transactions and connection pools a breeze. It seems the author is specifically talking about ORMs. I have not used them in Node.js so maybe they are immature. Saying "don't use Node.j…
Re: Node.js: the good, the bad, the ugly - why the hell would you use it?
#6I strongly disagree with not using Node.js for "server-side web app with relational DB behind". I have used both the PostgreSQL and MySQL modules and they do just about everything you need. There is a module called "any-db" which makes transactions and connection pools a breeze. It seems the author is specifically talking about ORMs. I have not used them in Node.js so maybe they are immature. Saying "don't use Node.j…
I'm fairly new to web development, but I've been thinking about starting a Node.js project backed by a PostgreSQL database lately. I was planning on using express to create an API of some sort to do all the database queries and return relevant information in JSON, then create the website front-end with something like Angular and have it just communicate with the API returning the JSON. Is there a better approach?
Re: Node.js: the good, the bad, the ugly - why the hell would you use it?
#7I strongly disagree with not using Node.js for "server-side web app with relational DB behind". I have used both the PostgreSQL and MySQL modules and they do just about everything you need. There is a module called "any-db" which makes transactions and connection pools a breeze. It seems the author is specifically talking about ORMs. I have not used them in Node.js so maybe they are immature. Saying "don't use Node.j…