{"id":15018416,"url":"https://github.com/nativescript/typedoc","last_synced_at":"2025-09-29T10:31:02.716Z","repository":{"id":141980138,"uuid":"69662917","full_name":"NativeScript/typedoc","owner":"NativeScript","description":"Documentation generator for TypeScript projects.","archived":false,"fork":true,"pushed_at":"2019-01-07T10:55:01.000Z","size":6534,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":22,"default_branch":"master","last_synced_at":"2024-05-23T10:01:33.184Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://typedoc.org","language":"HTML","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"MichaReiser/typedoc","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NativeScript.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-09-30T11:56:50.000Z","updated_at":"2019-06-22T14:44:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"bb702349-1d42-483b-b7a6-df55c2bc4169","html_url":"https://github.com/NativeScript/typedoc","commit_stats":{"total_commits":577,"total_committers":53,"mean_commits":10.88679245283019,"dds":"0.48873483535528595","last_synced_commit":"e414e6da938c07e11b041774a3a3585fa9f22f46"},"previous_names":[],"tags_count":27,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NativeScript%2Ftypedoc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NativeScript%2Ftypedoc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NativeScript%2Ftypedoc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NativeScript%2Ftypedoc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NativeScript","download_url":"https://codeload.github.com/NativeScript/typedoc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234609323,"owners_count":18859849,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T19:51:56.444Z","updated_at":"2025-09-29T10:31:02.201Z","avatar_url":"https://github.com/NativeScript.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TypeDoc\n\n\u003e Documentation generator for TypeScript projects.\n\n[![Build Status](https://travis-ci.org/TypeStrong/typedoc.svg?branch=master)](https://travis-ci.org/TypeStrong/typedoc) \n[![NPM Version](https://badge.fury.io/js/typedoc.svg)](http://badge.fury.io/js/typedoc)\n[![Chat on Gitter](https://badges.gitter.im/TypeStrong/typedoc.svg)](https://gitter.im/TypeStrong/typedoc?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n## Installation\n\nTypeDoc runs on Node.js and is available as an NPM package. You can install TypeDoc\nin your project's directory as usual:\n\n```bash\n$ npm install typedoc --save-dev\n```\n\nLike the TypeScript compiler, TypeDoc comes with a binary that can be called from anywhere\nif you install TypeDoc as a global module. The name of the executable is ``typedoc``.\n\n```bash\n$ npm install typedoc --global\n$ typedoc\n```\n\n## Usage\n\n### Shell\n\nTypeDoc accepts most of the command line arguments that the TypeScript compiler accepts. One major\ndifference is the fact that one may pass an entire directory instead of individual files to the documentation\ngenerator. So in order to create a documentation for an entire project you simply type:\n\n```bash\n$ typedoc --out path/to/documentation/ path/to/typescript/project/\n```\n\n### Important note\n\nStarting with version 0.2, TypeDoc no longer can predict whether files should be treated as modules\nor whether the project should be compiled into one big namespace. You must specify the `mode` argument\nin order to change the behaviour of TypeDoc.\n\n\n### Arguments\n\n* `--out \u003cpath/to/documentation/\u003e`\u003cbr\u003e\n  Specifies the location the documentation should be written to.\n* `--mode \u003cfile|modules\u003e`\u003cbr\u003e\n  Specifies the output mode the project is used to be compiled with.\n* `--json \u003cpath/to/output.json\u003e`\u003cbr\u003e\n  Specifies the location and file name a json file describing the project is written to. When specified no documentation will be generated.\n\n#### Source file handling\n* `--exclude \u003cpattern\u003e`\u003cbr\u003e\n  Exclude files by the given pattern when a path is provided as source\n* `--includeDeclarations`\u003cbr\u003e\n  Turn on parsing of .d.ts declaration files.\n* `--externalPattern \u003cpattern\u003e`\u003cbr\u003e\n  Define a pattern for files that should be considered being external.\n* `--excludeExternals`\u003cbr\u003e\n  Prevent externally resolved TypeScript files from being documented.\n* `--excludePrivate`\u003cbr\u003e\n  Prevent private members from being included in the generated documentation.\n  \n\n#### TypeScript compiler\n* `--module \u003ccommonjs, amd, system or umd\u003e`\u003cbr\u003e\n  Specify module code generation: \"commonjs\", \"amd\", \"system\" or \"umd\".\n* `--target \u003cES3, ES5, or ES6\u003e`\u003cbr\u003e\n  Specify ECMAScript target version: \"ES3\" (default), \"ES5\" or \"ES6\"\n\n#### Theming\n* `--theme \u003cdefault|minimal|path/to/theme\u003e`\u003cbr\u003e\n  Specify the path to the theme that should be used.\n* `--name \u003cDocumentation title\u003e`\u003cbr\u003e\n  Set the name of the project that will be used in the header of the template.\n* `--readme \u003cpath/to/readme|none\u003e`\u003cbr\u003e\n  Path to the readme file that should be displayed on the index page. Pass `none` to disable the index page\n  and start the documentation on the globals page.\n* `--hideGenerator`\u003cbr\u003e\n  Do not print the TypeDoc link at the end of the page.\n* `--gaID`\u003cbr\u003e\n  Set the Google Analytics tracking ID and activate tracking code.\n* `--gaSite \u003csite\u003e`\u003cbr\u003e\n  Set the site name for Google Analytics. Defaults to `auto`\n* `--entryPoint \u003cfully.qualified.name\u003e`\u003cbr\u003e\n  Specifies the fully qualified name of the root symbol. Defaults to global namespace.\n\n#### Content\n* `--includes \u003cpath/to/includes\u003e`\u003cbr\u003e\n  Specifies the location to look for included documents. One may use \u003ccode\u003e[[include:FILENAME]]\u003c/code\u003e\n  in comments to include documents from this location.\n\n* `--media \u003cpath/to/media\u003e`\u003cbr\u003e\n  Specifies the location with media files that should be copied to the output directory. In order to create\n  a link to media files use the pattern \u003ccode\u003emedia://FILENAME\u003c/code\u003e in comments.\n\n#### Miscellaneous\n* `--version`\u003cbr\u003e\n  Display the version number of TypeDoc.\n* `--help`\u003cbr\u003e\n  Display a simple cheat sheet.\n\n### Webpack\n\nThere is a plugin available to run TypeDoc with Webpack created by Microsoft. You can find it on NPM:\u003cbr\u003e\n[https://www.npmjs.com/package/typedoc-webpack-plugin](https://www.npmjs.com/package/typedoc-webpack-plugin)\n\n\n### Gulp\n\nThere is a plugin available to run TypeDoc with Gulp created by Rogier Schouten. You can find it on NPM:\u003cbr\u003e\n[https://www.npmjs.org/package/gulp-typedoc/](https://www.npmjs.org/package/gulp-typedoc/)\n\n\n### Grunt\n\nThere is a plugin available to run TypeDoc with Grunt created by Bart van der Schoor. You can find it on NPM:\u003cbr\u003e\n[https://www.npmjs.org/package/grunt-typedoc](https://www.npmjs.org/package/grunt-typedoc)\n\n## Plugins\n\n* [External Module Name](https://github.com/christopherthielen/typedoc-plugin-external-module-name) - Set the name of TypeDoc external modules\n\n## Advanced guides and docs\n\nVisit our homepage for advanced guides and an extensive API documentation:\u003cbr\u003e\n[http://typedoc.org](http://typedoc.org)\n\n\n## Contributing\n\nContributions are welcome and appreciated. You can find TypeDoc on GitHub, feel free to start\nan issue or create a pull requests:\u003cbr\u003e\n[https://github.com/TypeStrong/typedoc](https://github.com/TypeStrong/typedoc)\n\n\n## License\n\nCopyright (c) 2015 [Sebastian Lenz](http://typedoc.org).\u003cbr\u003e\nLicensed under the Apache License 2.0.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnativescript%2Ftypedoc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnativescript%2Ftypedoc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnativescript%2Ftypedoc/lists"}