Một mục tập trung giao diện trong kho dữ liệu GitHub của TopGit: bloomberg/ts-blank-space, 938 sao, nhóm Frontend, TypeScript. A small, fast, pure JavaScript type-stripper that uses the official TypeScript parser.
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
class C extends Array {
// ^^^ ^^^^^^^^^^^^^^^^
field ;
// ^^^^^^^ ^^^^^^^^^
method ( a ) {
// ^^^ ^^^^^^^^ ^^^^^^^^^ ^^^^^^
}
}
Try it out in the playground.
Rationale
The benefits of this library are:
It is fast
See ./perf folder for a micro-benchmark
Only 4 times slower than a native multi-threaded transformer
Fastest compared to non-native (JavaScript or Wasm)
No new JavaScript code is generated; instead, it re-uses slices of the existing source string
This is particularly true if your program is already generating the TypeScript SourceFile object, because it can be reused -- and producing the AST is the most time consuming part.
100% JavaScript runtime
No Wasm
No native-addons
No child process
It is small
Around 800 lines of code and one dependency (TypeScript)
By doing so little, the code should be relatively easy to maintain
Delegates the parsing to the official TypeScript parser
No need for additional SourceMap processing; see "where are my SourceMaps?"
:information_source: Not all TypeScript syntax is supported (see unsupported syntax). There is also no down-leveling; the JavaScript is preserved as is.
Contents
Installing
API
Node.js Loader
SourceMaps
Implementation details
Unsupported Syntax
tsconfig.json
TSX/JSX
ESM Output
Contributions
License
Code of Conduct
Security Vulnerability Reporting
Installing
npm install ts-blank-space
API
String to String
export default function tsBlankSpace(ts: string, onError?: (node) => void): string;
import tsBlankSpace from "ts-blank-space";
console.log(tsBlankSpace(`let x: string;`));
// "let x ;"
Bring your own AST
export function blankSourceFile(ts: typescript.SourceFile, onError?: (node) => void): string;
import ts from "typescript";
import { blankSourceFile } from "ts-blank-space";
const ast = ts.createSourceFile(...);
console.log(blankSourceFile(ast));
Node.js Loader
ts-blank-space exposes the required Node.js module loader hooks to use ts-blank-space to pre-process *.ts and *.mts that are imported before they are evaluated.
In addition to loading *.ts and *.mts files, an import resolver is also registered which catches failed *.js and *.mjs imports and re-attempts the import replacing the extension with .ts or .mts. This allows import paths to choose either .ts or .js (and .mts or .mjs) depending on which other factors the project may need to take into account such as bundling and package distribution.
:information_source: The loader assumes that all .ts and .mts files are ESM.
Where are my SourceMaps?
Because all the JavaScript in the output is located at the same line, column, and byte-offset as the original source, no mapping information is lost during the transform.
Does it really just blank out all the type annotations?
There are two cases, described here, where it does more than replace the TypeScript syntax with blank space.
ASI (automatic semicolon insertion)
To guard against ASI issues in the output, ts-blank-space will add ; to the end of type-only statements, and when removing a leading type annotation could introduce an ASI hazard.
Example one - type-only statement
statementWithNoSemiColon
type Erased = true
("not calling above statement")
class C {
field = 1/* no ; */
public ["computed field not accessing above"] = 2
}
becomes:
class C {
field = 1/* no ; */
; ["computed field not accessing above"] = 2
}
Arrow function type annotations that introduce a new line
If the type annotations around an arrow function's parameters introduce a new line then only replacing them with blank space can be incorrect. Therefore, in addition to removing the type annotation, the ( or ) surrounding the function parameters may also be moved.
Example one - multi-line return type:
let f = (a: string, b: string): Array<
string
> => [a, b];
becomes:
let f = (a , b
) => [a, b];
Example two - async with multi-line type arguments:
let f = async <
T
>(v: T) => {};
becomes:
let f = async (
v ) => {};
Unsupported Syntax
Some parts of TypeScript are not supported because they can't be erased in place due to having runtime semantics. See unsupported_syntax.md.
In addition, some compile-time-only assertion forms such as as / satisfies can still be unsupported in specific precedence-sensitive positions, because erasing them would require adding parentheses to keep JavaScript semantics the same.
When unsupported syntax is encountered, ts-blank-space will call the optional onError callback and continue. Examples can be seen in errors.test.ts.
Recommended tsconfig.json compiler settings
{
// Because JS syntax is emitted as-is
"target": "esnext",
// Because class fields are preserved as written which corresponds
// to 'define' semantics in the ECMAScript specification
"useDefineForClassFields": true,
// Because imports and exports are preserved as written, only removing the
// parts which are explicitly annotated with the `type` keyword
"verbatimModuleSyntax": true,
// As of `[email protected]` there is a built-in check to error on the non-erasable
// syntax that tools such as `ts-blank-space` don't support e.g. parameter properties.
"erasableSyntaxOnly": true,
}
TSX/JSX
.tsx input will generate .jsx output. JSX parts are not transformed, but instead preserved in the output.
By default, ts-blank-space will parse the file assuming .ts. If the original file contains JSX syntax, then the parsing should be done manually. There is a TSX example in valid.test.ts.
TypeScript may add an export {}; if all imports and exports were removed (because they were import/export type).
Because ts-blank-space only removes code, this is not performed. To force the output to always have an ESM syntactic marker, you can manually append "export {};";
3rd party ecosystem plugins
Webpack/Rspack: ts-blank-loader
Contributions
We :heart: contributions.
Have you had a good experience with this project? Why not share some love and contribute code, or just let us know about any issues you had with it?
We welcome issue reports here; be sure to choose the proper issue template for your issue, so that we can be sure you're providing the necessary information.
Before sending a Pull Request, please make sure you read our
Contribution Guidelines.
License
Please read the LICENSE file.
Code of Conduct
This project has adopted a Code of Conduct.
If you have any concerns about the Code, or behavior which you have experienced in the project, please
contact us at [email protected].
GitHub topics của bloomberg/ts-blank-space: "javascript", "type-stripping", "typescript". TopGit xếp repo vào nhóm Frontend.
bloomberg/ts-blank-space có phải mã nguồn mở không?
Có — bloomberg/ts-blank-space phát hành theo license Apache-2.0, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/bloomberg/ts-blank-space.
bloomberg/ts-blank-space có trang demo không?
Dự án có trang chủ ở https://bloomberg.github.io/ts-blank-space. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
bloomberg/ts-blank-space còn đang phát triển không?
Commit gần nhất trên bloomberg/ts-blank-space là 8 ngày trước (theo timestamp GitHub). Repo có 19 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
bloomberg/ts-blank-space dùng license gì?
bloomberg/ts-blank-space phát hành theo license Apache-2.0. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
Đọc thêm về bloomberg/ts-blank-space ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/bloomberg/ts-blank-space là nguồn chính thức.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc ts-blank-space có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về ts-blank-space.