https://github.com/ricora/typescript-backend-tutorial
TypeScriptバックエンド入門
https://github.com/ricora/typescript-backend-tutorial
Last synced: 25 days ago
JSON representation
TypeScriptバックエンド入門
- Host: GitHub
- URL: https://github.com/ricora/typescript-backend-tutorial
- Owner: ricora
- Created: 2022-06-01T10:55:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T09:45:45.000Z (almost 3 years ago)
- Last Synced: 2025-02-16T20:44:17.184Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 172 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# typescript-backend-tutorial
## Requirement
- Node.js
- npm## Install
```
npm install
```## Web server
```
ts-node src/server.ts
```環境によって、ts-nodeが見つからない場合は
```
npx ts-node src/server.ts
```とする必要あり。