无偿开源!你们的Star是我的动力!
自我做的客服聊天以来,让我做一套聊天应用的呼声越来越多,加上那套客服聊天由于没有组件化、UI设计等问题,也让我一直心有遗憾做的不够完美,于是利用空余时间做了一套相对完整的聊天应用。HasChat 是一套使用全新技术完成的通讯聊天网页。
作者开源目的旨在给刚学习该领域的新人一些引路,不管你是前端还是后端,都能对你在通讯聊天这个领域有一点点的启发。
haschat聊天应用
Node.Js >= 12.0.0
Mysql >= 5.7.0 (仅mysql版本需要,但执行mysql文件需要8.0以上版本)
前端
https://gitee.com/howcode/has-chat.git
后端 mysql版本
git clone -b main https://gitee.com/howcode/has-chat-service.git
后端 json版本
git clone -b master https://gitee.com/howcode/has-chat-service.git
前、后端
npm install
const db = mysql.createConnection({
host: "", // 主机地址 (默认:localhost)
user: "", // 用户名
password: "", // 密码
database: "" // 数据库
})
更多配置查看:nodejs-mysql
emailConfig: { //邮箱配置
host: "smtp.qq.com",//邮箱服务器 这里我用的QQ邮箱
port: 465,//邮箱使用端口
secure: true,//是否使用默认的465端口
auth: {
user: "", // 发送方邮箱地址
pass: "" // smtp 验证码
}
}
详情使用可以查看该文章:nodejs发送邮箱信息
node app.js
npm run dev
到此,项目可以正常运行
haschat
├── src
│ └── api // 接口文件
│ └── assets // 资源文件
│ └── css // css样式
│ └── emo // 表情包
│ └── icon // 字体图标
│ └── img // 图片资源
│ └── mp3 // 消息提示音频
│ └── class // 类文件
│ └── components // 组件
│ └── ChatContent.vue // 聊天窗口
│ └── ChatDomain.vue // 功能组件
│ └── ChatEditor.vue // 聊天输入框
│ └── ChatFoot.vue // 聊天框底部
│ └── ChatHead.vue // 聊天头部
│ └── ChatNav.vue // 菜单栏
│ └── HasChat.vue // 聊天入口
│ └── enums // 通用枚举
│ └── json // JSON数据处理
│ └── router // 路由
│ └── store // 数据仓库
│ └── utils // 工具
│ └── views // 页面
字段 | 类型 | 描述 |
---|---|---|
Id | number | 用户Id |
Name | string | 用户姓名 |
NickName | string | 用户昵称 |
OnlineState | boolean | 在线状态 |
Mobile | string | 用户手机号 |
Avatar | string | 用户头像 |
字段 | 类型 | 描述 |
---|---|---|
Id | number | 内容Id |
SendId | number | 发送人Id |
ReciverId | number | 接受人Id |
Content | string | 内容 |
Type | number | 类型 |
State | number | 发送状态 |
NoCode | string | 信息编号 |
CreateDateUtc | string | 创建时间 |
Title | string | 拓展功能字段 |
Description | string | 拓展功能字段 |
Label | string | 拓展功能字段 |
Thumbnail | string | 拓展功能字段 |
ReadFlag | boolean | 是否阅读 |
Avatar | string | 发送者用户头像 |
参数
id
:用户Id,必传
接口地址 : /api/getUserById
参数
id
:除去的用户Id,必传
接口地址 : /api/userList
参数
无
接口地址 : /api/getRandomUser
参数
email
:账户,必传
password
:密码,必传
接口地址 : /api/login
参数
email
:邮箱,必传
name
:用户名,必传
password
:密码,必传
surePassword
:确认密码,必传
接口地址 : /api/register
参数
email
:邮箱,必传
timestamp
:时间戳,自动携带
接口地址 : /api/sendVerificationCode
参数
verificationCode
:验证码,必传
timestamp
:时间戳,自动携带
接口地址 : /api/checkVerificationCode
参数
SendId
:发送者Id,必传
NoCode
:时间戳,自动携带
调用方式
store.state.socket.emit("joinChat", {
SendId: xxx,
NoCode: xxx,
});
参数
Conversition
:发送内容对象(查看Conversition类),必传
ReciverId
:接收者Id,必传
SendId
:发送者Id,必传
调用方式
store.state.socket.emit("sendMsg", {
Conversition: xxx,
ReciverId: xxx,
SendId: xxx,
});
参数
ReciverId
:接收者Id,必传
SendId
:发送者Id,必传
调用方式
store.state.socket.emit("changeMsgRead", {
ReciverId: xxx,
SendId: xxx,
});
参数
SendId
:发送者Id,必传
Revicer
:接受者对象(可查看Use类),必传
调用方式
store.state.socket.emit("insertHistorySession", {
SendId: xxx,
Revicer: xxx,
});
一、本项目宗旨在于为广大的正在学习通讯方面的新手提供学习、思路
二、本项目资源全部免费分享,包括前端源码、后端转源码等。本项目不会利用任何资源进行任何的销售盈利活动。
三、任何情况下,因使用本项目进行违法犯罪的行为,本人不承担任何法律责任。