New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

node-sound

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-sound - npm Package Compare versions

Comparing version
0.0.6
to
0.0.7
+1
-1
package.json
{
"name": "node-sound",
"version": "0.0.6",
"version": "0.0.7",
"description": "A library to play audio files from nodejs applications",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,1 +9,10 @@ # node-sound

`yarn add node-sound`
# Usage
```js
const { NodeSound } = require('node-sound');
const player = NodeSound.getDefaultPlayer();
player.play('sample.wav').then(() => {
// TO DO
})
```