Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mizukiokushima/nodejs_4th
Node.jsを使用した基礎学習です。
https://github.com/mizukiokushima/nodejs_4th
express nodejs nodemon socketio
Last synced: 24 days ago
JSON representation
Node.jsを使用した基礎学習です。
- Host: GitHub
- URL: https://github.com/mizukiokushima/nodejs_4th
- Owner: MizukiOkushima
- Created: 2024-08-13T09:40:34.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-15T14:40:53.000Z (5 months ago)
- Last Synced: 2024-08-20T14:26:49.952Z (4 months ago)
- Topics: express, nodejs, nodemon, socketio
- Language: HTML
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nodejs_4th
Node.jsを使用してチャットアプリを作成する。### バージョンについて
Node.js v22.1.0### 環境構築
package.jsonファイルの生成
`npm init -y`
expressのインストール
`npm install express`
socket.ioのインストール
`npm install socket.io`
nodemonのインストール(グローバルインストール)
`npm install -g nodemon`
package.jsonのscriptsの編集
"scripts": {
"dev": "nodemon server.js"
}