{"id":13990202,"url":"https://github.com/unional/typescript-blackbook","last_synced_at":"2025-04-05T05:06:38.847Z","repository":{"id":37692402,"uuid":"53234285","full_name":"unional/typescript-blackbook","owner":"unional","description":"The TypeScript Blackbook","archived":false,"fork":false,"pushed_at":"2025-03-17T15:40:30.000Z","size":8313,"stargazers_count":125,"open_issues_count":15,"forks_count":20,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-03-29T04:08:04.353Z","etag":null,"topics":["lint","linting","style-guide","styleguide","typescript","typescript-guidelines"],"latest_commit_sha":null,"homepage":"http://unional.github.io/typescript-blackbook/","language":"MDX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/unional.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"ko_fi":"unional"}},"created_at":"2016-03-06T02:46:52.000Z","updated_at":"2024-11-22T16:20:55.000Z","dependencies_parsed_at":"2023-02-14T00:00:28.375Z","dependency_job_id":"cfe66da9-3b3a-41dc-b2e2-6b7ef12c55a5","html_url":"https://github.com/unional/typescript-blackbook","commit_stats":{"total_commits":475,"total_committers":7,"mean_commits":67.85714285714286,"dds":0.3726315789473684,"last_synced_commit":"a3ffe23614d6959884a7e6fb6ee906c431dca518"},"previous_names":["unional/typescript-guidebook"],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unional%2Ftypescript-blackbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unional%2Ftypescript-blackbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unional%2Ftypescript-blackbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unional%2Ftypescript-blackbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unional","download_url":"https://codeload.github.com/unional/typescript-blackbook/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247289427,"owners_count":20914464,"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":["lint","linting","style-guide","styleguide","typescript","typescript-guidelines"],"created_at":"2024-08-09T13:02:27.526Z","updated_at":"2025-04-05T05:06:38.824Z","avatar_url":"https://github.com/unional.png","language":"MDX","readme":"# Typescript Guidebook\n\n[![NPM version][npm-image]][npm-url]\n[![GitHub NodeJS][github-nodejs]][github-action-url]\n\nWelcome to the TypeScript Guidebook.\n\nThis guidebook supplements the official [TypeScript Handbook] while focusing on *how to get the most out of TypeScript with minimal effort*.\n\nI will cover anything and everything you need when writing TypeScript.\nFrom how to use the language, to coding style and any tool that may be useful.\n\n## Highlights\n\n- Stay true to JavaScript\n- Focus on code efficiency\n- Focus on tool compatibility\n  - IDE / Editors\n    - [Visual Studio Code](https://github.com/Microsoft/vscode)\n    - [Atom](https://atom.io/)\n    - [WebStorm](https://www.jetbrains.com/webstorm/)\n  - Formatter\n    - [prettier](https://prettier.io/)\n  - Linter\n    - [ESLint](https://eslint.org/)\n\n## Watch this repo\n\nI'll periodically update this repo.\nYou can click the watch button if you want to be notified.\n\n## Disclaimer\n\nRecently I do most of my work in VS Code.\nSo if you find that some guidelines doesn't work well in your IDE,\nlet me know, and we can see how to get it working on your IDE.\n\n## Table of Contents\n\n- [What's new](/docs/pages/00-updates/README.md)\n- [Introduction](/docs/pages/01-introduction/README.md)\n  - [What is TypeScript](/docs/pages/01-introduction/what-is-typescript.md)\n- [JavaScript Syntax](/docs/pages/02-javascript-syntax/README.md)\n  - [Array](/docs/pages/02-javascript-syntax/array.md)\n  - [Arrow Function](/docs/pages/02-javascript-syntax/arrow-function.md)\n  - [Assignment](/docs/pages/02-javascript-syntax/assignment.md)\n  - [Async Await](/docs/pages/02-javascript-syntax/async-await.md)\n  - [Boolean](/docs/pages/02-javascript-syntax/boolean.md)\n  - [Class](/docs/pages/02-javascript-syntax/class.md)\n  - [Declaration Statements](/docs/pages/02-javascript-syntax/declaration-statements.md)\n  - [Decorator](/docs/pages/02-javascript-syntax/decorator.md)\n  - [Default Parameters](/docs/pages/02-javascript-syntax/default-parameters.md)\n  - [Error](/docs/pages/02-javascript-syntax/error.md)\n  - [Function](/docs/pages/02-javascript-syntax/function.md)\n  - [Module](/docs/pages/02-javascript-syntax/module.md)\n  - [Object Destructuring](/docs/pages/02-javascript-syntax/object-destructuring.md)\n  - [Object Literal](/docs/pages/02-javascript-syntax/object-literal.md)\n  - [Property Accessor](/docs/pages/02-javascript-syntax/property-accessor.md)\n  - [String](/docs/pages/02-javascript-syntax/string.md)\n  - [this](/docs/pages/02-javascript-syntax/this.md)\n- [TypeScript Syntax](/docs/pages/04-typescript-syntax/README.md)\n  - [Type Declaration](/docs/pages/04-typescript-syntax/type-declaration.md)\n  - [Basic Types](/docs/pages/04-typescript-syntax/basic-types.md)\n  - [Interfaces](/docs/pages/04-typescript-syntax/interfaces.md)\n  - [Modules](/docs/pages/04-typescript-syntax/modules.md)\n  - [Tuple Type](/docs/pages/04-typescript-syntax/tuple-type.md)\n- [Files and Projects](/docs/pages/07-files-and-projects/README.md)\n  - [Compiler Options](/docs/pages/07-files-and-projects/compiler-options.md)\n  - [Files](/docs/pages/07-files-and-projects/file-types.md)\n  - [Code Organization](/docs/pages/07-files-and-projects/code-organization.md)\n  - [tsconfig.json](/docs/pages/07-files-and-projects/tsconfig.md)\n  - [package.json](/docs/pages/07-files-and-projects/package.json.md)\n  - [Converting from JavaScript](/docs/pages/07-files-and-projects/converting-from-javascript.md)\n- Coding Practice\n  - [Testing](/docs/pages/08-testing/testing.md)\n- [Typings](/docs/pages/typings/README.md)\n  - [Functions](/docs/pages/typings/functions.md)\n  - [Overloading](/docs/pages/typings/overloading.md)\n  - [Namespaces and Modules](/docs/pages/typings/namespaces-and-modules.md)\n  - [Shape of typings](/docs/pages/typings/shape-of-typings.md)\n  - [TSLint configuration](/docs/pages/typings/tslint.md)\n\n## Other Resources\n\nWith the rapid advancement of JavaScript and TypeScript,\nI may not able to keep this guidebook updated with the latest information.\n\nHere are some additional resources in JavaScript and TypeScript:\n\n- [Official TypeScript Tutorial](http://www.typescriptlang.org/docs/tutorial.html)\n- [Official TypeScript Handbook](http://www.typescriptlang.org/docs/handbook/basic-types.html)\n- [TypeScript Playground](https://www.typescriptlang.org/play/index.html) is a great way if you want to quickly test out TypeScript syntax.\n- [TypeScript Deep Dive](https://basarat.gitbooks.io/typescript/) by [That TypeScript Guy](https://twitter.com/basarat)\n- [StackOverflow](https://stackoverflow.com/questions/tagged/typescript) always a great place to ask questions\n- [TypeScript Gitter Channel](https://gitter.im/Microsoft/TypeScript) the official Gitter channel for the TypeScript repository.\\\\\n  You can get help from the TypeScript team directly here.\n- [Airbnb JavaScript](https://github.com/airbnb/javascript)\n- [@dzharii Awesome TypeScript](https://github.com/dzharii/awesome-typescript)\n- [@semlinker Awesome TypeScript](https://github.com/semlinker/awesome-typescript)\n\n## Contributing\n\nInterested in helping to make this guideline more useful to everyone? Great 🌷.\n\nYou can check out this [contributing guide](/CONTRIBUTING.md) to get you get familiar with the convention we use here.\n\n[npm-image]: https://img.shields.io/npm/v/typescript-style.svg?style=flat\n[npm-url]: https://npmjs.org/package/typescript-style\n[github-nodejs]: https://github.com/unional/typescript-guidebook/workflows/ci/badge.svg\n[github-action-url]: https://github.com/unional/typescript-guidebook/actions\n[TypeScript Handbook]: http://www.typescriptlang.org/docs/handbook/basic-types.html\n","funding_links":["https://ko-fi.com/unional"],"categories":["MDX"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funional%2Ftypescript-blackbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funional%2Ftypescript-blackbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funional%2Ftypescript-blackbook/lists"}