vol

3.0.0 • Public • Published

vol

Get and set sound volume

Install

$ npm install vol

Usage

const vol = require('vol');
 
vol.get().then(level => {
    console.log(level);
    //=> 0.45
});
 
vol.set(0.65).then(() => {
    console.log('Changed volume to 65%');
});

API

.get()

Returns Promise with the current volume level.

.set(level)

Set volume level.

level

Type: number

A number between 0 and 1.

Related

License

MIT © Andreas Gillström

Dependents (1)

Package Sidebar

Install

npm i vol

Weekly Downloads

6

Version

3.0.0

License

MIT

Last publish

Collaborators

  • gillstrom
  • kevva