# Internet Gomoku Connect-5 Game **Repository Path**: Hmount/internet-gomoku-connect-5-game ## Basic Information - **Project Name**: Internet Gomoku Connect-5 Game - **Description**: 一个十分简约的分布式架构Web五子棋联网对战平台 - **Primary Language**: NodeJS - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-04-02 - **Last Updated**: 2023-04-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: Nodejs, HTML, CSS, JavaScript ## README ### 项目介绍 ``` 这是一个分布式系统课程作业要求实现的一个十分简约的五子棋联网对战平台 前端使用原生html+css+js实现,未使用任何框架 后端使用nodejs-websocket实现联机通信,仅支持基于用户名的匹配机制,不包含登陆认证和其他安全性功能 ``` ### 项目架构 ```shell . ├── README.md ├── server # 服务端 │ ├── node_modules │ ├── package.json │ └── server.js # 服务端程序 └── web # web前端 ├── assets # 网页附件 └── index.html # 主页 ```