🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@vonage/media

Package Overview
Dependencies
Maintainers
54
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vonage/media

The Media API can be used to query, download and delete media items such as audio files for use with other Vonage APIs.

latest
Source
npmnpm
Version
1.4.1
Version published
Maintainers
54
Created
Source

Vonage Media SDK for Node.js

GitHub Workflow Status Codecov Latest Release Contributor Covenant License

Vonage

This is the Vonage Media SDK for Node.js for use with Vonage APIs. To use it you will need a Vonage account. Sign up for free at vonage.com.

For full API documentation refer to developer.vonage.com.

Installation

With NPM

npm install @vonage/media

With Yarn

yarn add @vonage/media

Usage

Unlike the other SDK's this package is not included in the Vonage Server SDK for Node.js

const { Auth } = require('@vonage/auth')
const { Media } = require('@vonage/media')

const credentials = new Auth({
  applicationId: APP_ID,
  privateKey: PRIAVTE_KEY,
})
const options = {}
const mediaClient = new Media(credentials, options)

Where credentials is any option from @vonage/auth, and options is any option from @vonage/server-client

Promises

Most methods that interact with the Vonage API uses Promises. You can either resolve these yourself, or use await to wait for a response.

const resp = await mediaClient.listMediaItem()

mediaClient
  .listMedia()
  .then((resp) => console.log(resp))
  .catch((err) => console.error(err))

Testing

Run:

npm run test

FAQs

Package last updated on 22 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts