不知道你用的是什么,举个Socket.io例子
播放提示音的话很简单 三行代码就可以
this.sound = new Audio();
this.sound.src = '提示音文件地址';
this.sound.play();