# socket.io-cloud-examples **Repository Path**: mirrors_defunctzombie/socket.io-cloud-examples ## Basic Information - **Project Name**: socket.io-cloud-examples - **Description**: example socket.io-cloud apps - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Client Server A simple chat example. ## How to use ``` $ cd socket.io-cloud-examples $ npm install $ node bin/chat ``` And point your browser to `http://localhost:3001`. Optionally, specify a port by supplying the `PORT` env variable. The browser should load the socket.io script from the cloud server ---- $ ----- Note: Cloud Server is running on port 3000 and the Client Server is running on 3001 ## Features General Features of the Chat - Multiple users can join a chat room by each entering a unique username on website load. - Users can type chat messages to the chat room. - A notification is sent to all users when a user joins or leaves the chatroom. Features of the Client Server - This is responsible for initial commmunication with the client - Any POST messages from the client are redirected to the Cloud Server ( part of the repository socket.io-cloud)