Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the bad or ugly part of nodejs [closed]

Tags:

node.js

I know the good part of nodejs, it uses event-driven, non-blocking I/O model and balabala. But as an experienced nodejs developer, what's the bad or ugly part of nodejs?

Any detailed situation or exemplified code will be appreciated.

like image 980
linbo Avatar asked Mar 12 '13 11:03

linbo


Video Answer


1 Answers

Not necessarily a bad thing but debugging nested callbacks is an issue. If you use something like express this is alleviated. If you are doing test driven development using Jasmine or something like that, debugging becomes a lot easier.

like image 91
Pradeep Banavara Avatar answered Oct 16 '22 11:10

Pradeep Banavara