Answers for "how to play sound on node js"

5

play a sound wiith js

var audio = new Audio('audio.mp3');
  audio.play();
Posted by: Guest on July-03-2020
0

js play sound

const sound = require("sound-play");
sound.play("file.mp3");
Posted by: Guest on April-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language