DEV Community

Discussion on: How do you get Node.js apps to production?

Collapse
 
andy profile image
Andy Zhao (he/him)

What helps me is having good reliable documentation. A painful deployment process (for a side project) is running into unknowns that sends you down a rabbit hole of searching error after error when all you wanted to do is make your app live. 😭 Documentation won't account for every little bug, but good docs from the tools you use are key.

Collapse
 
aaronpowell profile image
Aaron Powell

I totally hear you on good documentation beign a life saver. I spent yesterday down a massive rabbit hole trying to work out why something was falling over only to find that there's a bug in the dependency I was using! 🀣

Is GitHub the first stop for you when looking for docs on a project?

Collapse
 
andy profile image
Andy Zhao (he/him)

I'd say the first step is usually searching moduleName docs. GitHub is most likely the first result though πŸ™ƒ

Collapse
 
stevenanthonyrevo profile image
Steven

So True, Andy! Developers need good documentation to help keep projects healthy!