mirror of
https://github.com/kou029w/_.git
synced 2025-04-18 18:49:37 +00:00
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> |
||
---|---|---|
.. | ||
.gitignore | ||
main.ts | ||
package.json | ||
pnpm-lock.yaml | ||
README.md |
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'