DEV Community

Discussion on: Why you should isolate Express from the rest of your Node application

Collapse
 
koresar profile image
Vasyl Boroviak

This is crucial to quality code. Separating communication protocol from business logic is the most important skill a node.js developer must have.

Great article!

Collapse
 
ccleary00 profile image
Corey Cleary

Thanks! And I agree it's very important. I think it's very common to see the web framework/communication protocol mixed into other layers - I did this too when I was new to building software! - but hopefully this helps point people in the right direction.