Add documentation to your API in Node.js
These days, document your API is a great idea if you: Work with separated teams for backend and frontend development, Have a public API, Are going to hand off the project and others need to work on it without your help In case you are working with Node.js, we like to use the solution offered by apidoc https://www.npmjs.com/package/apidoc The documentation generated by this package is not automatic so that you’ll have to describe your API resources. This may look like a…