Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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を使用した基礎学習です。

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"
}