1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/ts/README.md
2023-12-19 14:05:09 +09:00

37 lines
475 B
Markdown

# TypeScript で書いたサーバーをワンライナーで構築してみよう
tsx
```
npx tsx main.ts
```
tsx + watch
```
npx tsx --watch main.ts
```
esbuild (esbuild-register)
```
node -r esbuild-register main.ts
```
esbuild (esbuild-register) + watch
```
node -r esbuild-register --watch main.ts
```
tsup
```
npx tsup main.ts --clean --onSuccess 'node dist/main.js'
```
tsup + watch
```
npx tsup main.ts --clean --watch --onSuccess 'node dist/main.js'
```