1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-04-18 18:49:37 +00:00
_/ts
dependabot[bot] e1f3dee954
Bump express from 4.18.2 to 4.19.2 in /ts
Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.19.2.
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](https://github.com/expressjs/express/compare/4.18.2...4.19.2)

---
updated-dependencies:
- dependency-name: express
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-29 04:57:39 +00: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 Bump express from 4.18.2 to 4.19.2 in /ts 2024-03-29 04:57:39 +00:00
pnpm-lock.yaml Bump express from 4.18.2 to 4.19.2 in /ts 2024-03-29 04:57:39 +00: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'