5

I want to hear notification sound while getting new messages,is there any packages available for play notification audio alert?

1 Answers1

6

You can install it to your project with npm install --save howler and play a sound like this:

var sound = new Howl({
  src: ['sound.mp3']
});

sound.play();
Community
  • 1
  • 1
BehrouzMoslem
  • 9,053
  • 3
  • 27
  • 34