1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
This commit is contained in:
Nebel 2022-04-16 00:42:25 +00:00 committed by GitHub
parent 94b9f43c27
commit 7c856c889f
2 changed files with 62 additions and 3 deletions

View file

@ -2,7 +2,10 @@
[lukeed/tsm](https://github.com/lukeed/tsm) と [antfu/esno](https://github.com/antfu/esno) の比較
環境: node v17.9.0
環境:
- Node v17.9.0
- GitHub Codespaces 4-core/8GB RAM/32GB
サンプルコード:
@ -30,14 +33,66 @@ const message: string = "hello world";
console.log(message);
```
```ts
// dummy
import "typescript";
const message: string = "hello world";
console.log(message);
```
```sh
time npx --call 'bash -c "for i in {1..10}; do ./hello-world.tsm.ts > /dev/null 2>&1; done"'
time npx --call 'bash -c "for i in {1..10}; do ./hello-world.esno.ts > /dev/null 2>&1; done"'
time npx --call 'bash -c "for i in {1..10}; do ./hello-world.esmo.ts > /dev/null 2>&1; done"'
time npx --call 'bash -c "for i in {1..10}; do node -r tsm hello-world.ts > /dev/null 2>&1; done"'
time npx --call 'bash -c "for i in {1..10}; do node --loader tsm hello-world.ts > /dev/null 2>&1; done"'
time npx --call 'bash -c "for i in {1..10}; do node -r esbuild-register hello-world.ts > /dev/null 2>&1; done"'
```
## 結果
サイズ: esno のほうが依存関係が多いので若干大きいが esbuild 本体に比べれば誤差程度
サイズ: esno のほうが、依存関係が多いのでややサイズ大きいが esbuild 本体に比べれば誤差程度
パフォーマンス:
パフォーマンス: tsm のほうがパフォーマンス高い
```console
$ time npx --call 'bash -c "for i in {1..10}; do ./hello-world.tsm.ts > /dev/null 2>&1; done"'
real 0m4.848s
user 0m4.608s
sys 0m0.695s
$ time npx --call 'bash -c "for i in {1..10}; do ./hello-world.esno.ts > /dev/null 2>&1; done"'
real 0m5.261s
user 0m4.765s
sys 0m0.856s
$ time npx --call 'bash -c "for i in {1..10}; do ./hello-world.esmo.ts > /dev/null 2>&1; done"'
real 0m6.468s
user 0m6.321s
sys 0m0.964s
$ time npx --call 'bash -c "for i in {1..10}; do node -r tsm hello-world.ts > /dev/null 2>&1; done"'
real 0m3.804s
user 0m3.430s
sys 0m0.513s
$ time npx --call 'bash -c "for i in {1..10}; do node --loader tsm hello-world.ts > /dev/null 2>&1; done"'
real 0m4.162s
user 0m3.971s
sys 0m0.683s
$ time npx --call 'bash -c "for i in {1..10}; do node -r esbuild-register hello-world.ts > /dev/null 2>&1; done"'
real 0m4.422s
user 0m4.113s
sys 0m0.694s
```
## 感想
ここまで見た範囲では tsm 優位か

View file

@ -0,0 +1,4 @@
// dummy
import "typescript";
const message: string = "hello world";
console.log(message);