Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Latest commit

 

History

History
37 lines (26 loc) · 870 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 870 Bytes

Angular WebSocket Sample

アプリサンプル画面

About

WebSocketで通信するクライアント・サーバーアプリのサンプルです。

それぞれの実装は以下の通りです。

  • クライアント ... Angular, RxJS (WebSocketクライアント)
  • サーバー ... WebSocket(websockets/ws) & REST APIサーバー

アプリ構成

Usage

クライアント

Web画面の場合

cd client
npm ci
npm run build

コマンドラインの場合

cd client
npx wscat -c ws://localhost:8000

サーバー

yarn install
yarn build