Modern Node.js Patterns
kashw1n.com
Modern Node.js Patterns
1–10 of 448 posts
Re: Modern Node.js Patterns
#2Re: Modern Node.js Patterns
#3Re: Modern Node.js Patterns
#4Yet more architecture astronaut behavior by people who really should just be focusing on ifs, fors, arrays, and functions.
Re: Modern Node.js Patterns
#5Re: Modern Node.js Patterns
#6Yet more architecture astronaut behavior by people who really should just be focusing on ifs, fors, arrays, and functions.
Re: Modern Node.js Patterns
#7Yet more architecture astronaut behavior by people who really should just be focusing on ifs, fors, arrays, and functions.
Architecture astronaut is a term I hadn't heard but can appreciate. However I fail to see that here. It's a fair overview of newish Node features... Haven't touched Node in a few years so kinda useful.
While I can see some arguments for "we need good tools like Node so that we can more easily write actual applications that solve actual business problems", this seems to me to be the opposite.
All I should ever have to do to import a bunch of functions from a file is
"import * from './path'"
anything more than that is a solution in search of a problem
Re: Modern Node.js Patterns
#8Yet more architecture astronaut behavior by people who really should just be focusing on ifs, fors, arrays, and functions.
Re: Modern Node.js Patterns
#9Yet more architecture astronaut behavior by people who really should just be focusing on ifs, fors, arrays, and functions.
One of the core things Node.js got right was streams. (Anyone remember substack’s presentation “Thinking in streams”?) It’s good to see them continue to push that forward.
Re: Modern Node.js Patterns
#101. Node has built in test support now: looks like I can drop jest!
2. Node has built in watch support now: looks like I can drop nodemon!