In this blog, you’ll learn how to document your JS/TS code, how to give more context to your functionalities using JSDoc, and how to generate documentation files using Typedoc. Setting up the project Create a new project using npm: > npm init -y For this blog, it contains 3 files: src/app.js src/models/user.mjs src/models/todo.mjs Then update… Continue reading Learn how to document JavaScript or TypeScript code using JSDoc & Typedoc