Exploring the documentation
Documentation is a crucial aspect of any software project. Deno does a good job of keeping all the APIs well-documented, and TypeScript helps a lot with this. As the standard library and runtime functions are all written in TypeScript, most of the documentation is automatically generated.
The documentation is available at https://doc.deno.land/.
If you don't have internet access and want to access the documentation of a module you have installed locally, Deno has got you covered.
Many editors, namely VS Code, allow you to do this, with the famous Cmd/Ctrl + click being an example. However, Deno doesn't depend on editor features for this as the doc
command provides all the essential features you'll need.
Let's have a look at the documentation for the standard library's HTTP module:
$ deno doc https://deno.land/std@0.83.0/http/server.ts function _parseAddrFromStr(addr: string): HTTPOptions Parse...