Automated Documentation for your Typescript/Angular projects

Rahul Bhooteshwar
Learn With Rahul
Published in
4 min readAug 26, 2017

Documenting your code is as important as writing readable code. It is futuristic aspect to make the understanding of your code a “Bed of Roses” for new developers . Well documented code is a boon specially when you are working on cutting edge software development languages.

Well documented code is a must, but is it worth managing Confluence pages or Google Docs to document your code and component work flows ??

I somewhere heard that “Don’t document your code. Code your documentation” and found it sensible. I don’t like investing more time on documentation than coding.

Then what to do ?

Don’t document your code. Code your documentation!

What if you have a way to automatically document your code in a beautifully presentable format ? And what if this automated documentation process comes to your project by investing a minute or two ??

So without wasting your precious time, lets start with what can you do ?

For Automated Documentation of your Angular/TypeScript Project you can use a superb tool called Compodoc .

Compodoc, is available as a npm module and you can use it as following:

In your Angular/TypeScript project ‘s root, run following command:

npm install @compodoc/compodoc — save-dev

This will install compodoc as dev dependency of your project.

Add script in package.json as following:

compodoc”: “compodoc”,

“generate-docs”:”compodoc -p src/tsconfig.app.json”,

“serve-docs”:”compodoc -s src/tsconfig.app.json”,

Note: You can specify a different tsconfig file if you have it with another name or at another location.

You are almost done setting up document automation for your project.

In order to generate documentation of your project, run following command:

npm run generate-docs

Generated documentation can be seen by launching index.html from generated coverage folder in your browser. You can also generate and serve documentation on local server, i.e. http://127.0.0.1:8080

npm run serve-docs

Yuppy..you are done!!

Lets see what you get as a part of your documentation:

Project Overview

Project Overview with relationships

Component structure overview

Component structure overview

Type wise classification of Project architecture

Type wise classification of Project architecture

README.md file server

Deep dive into component details

Component details

Code level details

You can make your code more descriptive by adding JsDoc formatted comments. These comments are also supported by Compodoc . It will provide the code coverage details and parse these comments to generate meta data, like parameters, types, return types.

See, how much you get after investing a minute or two in integrating the amazing tool with your project.

In order to get more details about Compodoc visit the getting started guide.

I hope this will help you understanding the usability of this amazing tool in automated documentation of your code.

I would like to thank the creators/contributors of this amazingly cool tool:

I will be back with some more amazing and useful stuff, Till then ..Keep Learning .. Keep yourself updated.

--

--

Rahul Bhooteshwar
Learn With Rahul

Programming enthusiast, Technical Blogger, learning the concepts of cutting-edge technologies in Software Development.