Ask HN: Good example Node.js projects?
I'm finding it difficult to locate good Node project examples on Github (particularly using ES6). It's hard in general to get a sense of best practices around architecting a Node app and writing 'proper' Node code, so any tips would be greatly appreciated.
6 comments
[ 3.2 ms ] story [ 26.0 ms ] threadFor performance I would personally use Go or even Java before venturing into node and it's "constantly broken ecosystem".
If I don't need performance I would rather use something I already know 10x better like Perl.
Disclaimer: I don't do front end so I don't need a lot of JavaScript.
The only selling point for node is if you absolutely love JS or only know that well, you can work on backend. It has many bad points that makes it a nightmare over time, like contstantly new and abandondened frameworks and modules. Npm has gotten better but it was a nightmare for automated ci, uses all file handles on shared machines due to node modules filling up with files. Also see left pad... I got turned off after working with it for a couple of years.