nodejs

Debugging Node.js in Docker with Hot Reload

I was recently working on a Node.js application and needed to debug a specific issue I was having. This application is hosted within a Docker container both locally and when running in production. Usually if I am trying to resolve something quickly, I might just normally use console.log() to check that a value was what I expected. However this specific scenario had me stumped and I needed to go deeper.

Continue Reading...