1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/ts
2023-12-19 14:05:09 +09:00
..
.gitignore create ts 2023-06-19 15:20:17 +09:00
main.ts create ts 2023-06-19 15:20:17 +09:00
package.json update 2023-12-19 14:05:09 +09:00
pnpm-lock.yaml update 2023-12-19 14:05:09 +09:00
README.md update 2023-12-19 14:05:09 +09:00

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'