Type War (what is it good for?) (JS Party #292) |> Changelog podcast
- News article from May 2023 when Svelte switched from TS to JSDoc type annotations
- DHH’s blog post “Open Source Hooliganism and the TypeScript Meltdown”
- DHH’s tweet announcing Turbo’s removal of TS
- Rich’s quote tweet of DHH Turbo announcement
- JSDoc docs
- Official TS docs highlighting support for JS Doc type annotations
- ECMA proposal for Type Annotations
- Principles of Writing Consistent, Idiomatic JavaScript
jsdoc/jsdoc: An API documentation generator for JavaScript.
An API documentation generator for JavaScript.
JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.
/**
* Represents a book.
* @constructor
* @param {string} title - The title of the book.
* @param {string} author - The author of the book.
*/
function Book(title, author) {
}
No comments:
Post a Comment