swc-node
Github에서 저를 후원하여 제가 풀타임 오픈 소스 개발자가 될 수 있도록 도와주세요
node-gyp
및 설치 후 스크립트가 없는 빠른 TypeScript/JavaScript
변환기 .
컴파일이나 유형 검사 없이 노드를 사용하여 TypeScript를 실행합니다.
npm i -D @swc-node/register
node -r @swc-node/register script.ts
node --import @swc-node/register/esm-register script.ts # for esm project with node>=20.6
node --loader @swc-node/register/esm script.ts # for esm project with node<=20.5, deprecated
esm 프로젝트의 노드에 --enable-source-maps
전달합니다.
.swcrc 파일을 로드하려면 환경 변수 SWCRC=true를 설정하세요.
SWCRC=true node -r @swc-node/register script.ts
#!/usr/bin/env -S node --import @swc-node/register/esm-register
// your code
shebang으로 실행하고 TS_NODE_PROJECT=null
( #!/usr/bin/env TS_NODE_PROJECT=null node --import @swc-node/register/esm-register
)을 추가하여 tsconfig.json 무시를 사용하세요.
가장 빠른 TypeScript
변환기.
세부정보: @swc-node/core
RxJS
AjaxObservable.ts
ES2015 및 CommonJSJavaScript
로 변환합니다. 벤치마크 코드: 벤치
하드웨어 정보 :
Model Name: MacBook Pro
Model Identifier: MacBookPro15,1
Processor Name: 6-Core Intel Core i7
Processor Speed: 2.6 GHz
Number of Processors: 1
Total Number of Cores: 6
L2 Cache (per Core): 256 KB
L3 Cache: 12 MB
Hyper-Threading Technology: Enabled
Memory: 16 GB
transformSync
esbuild x 510 ops/sec ±1.28% (88 runs sampled)
@swc-node/core x 438 ops/sec ±1.00% (88 runs sampled)
typescript x 28.83 ops/sec ±10.20% (52 runs sampled)
babel x 24.21 ops/sec ±10.66% (46 runs sampled)
Transform rxjs/AjaxObservable.ts benchmark bench suite: Fastest is esbuild
transform
UV_THREADPOOL_SIZE=11 yarn bench
@swc-node/core x 1,253 ops/sec ±0.90% (75 runs sampled)
esbuild x 914 ops/sec ±1.31% (77 runs sampled)
Transform rxjs/AjaxObservable.ts parallel benchmark bench suite: Fastest is @swc-node/core
yarn bench
@swc-node/core x 1,123 ops/sec ±0.95% (77 runs sampled)
esbuild x 847 ops/sec ±3.74% (71 runs sampled)
Transform rxjs/AjaxObservable.ts parallel benchmark bench suite: Fastest is @swc-node/core
가장 빠른 Jest TypeScript
변환기.
세부정보: @swc-node/jest
순수
TypeScript
프로젝트에서 테스트 중이며 컴파일 대상은ES2018
입니다.npx jest --no-cache
로 실행하면ts-jest
isolatedModules: true
로 구성되었습니다.
Test Suites: 49 passed, 49 total
Tests: 254 passed, 254 total
Snapshots: 53 passed, 53 total
Time: 54.631 s
Ran all test suites.
Done in 62.71s.
Test Suites: 49 passed, 49 total
Tests: 254 passed, 254 total
Snapshots: 53 passed, 53 total
Time: 10.511 s
Ran all test suites.
Done in 14.34s.
더 빠른 ts-node/register/transpile-only
대안.
세부정보: @swc-node/register
pnpm i
pnpm build
pnpm test