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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.0.0
    1
    • latest

Version History

Package Sidebar

Install

npm i vol

Weekly Downloads

9

Version

3.0.0

License

MIT

Last publish

Collaborators

  • gillstrom
  • kevva