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

waapi-client

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

waapi-client

Wwise Authoring API Client

latest
npmnpm
Version
2017.2.1
Version published
Maintainers
1
Created
Source

Wwise Authoring API Client

To use waapi client in a Node.js project:

npm install waapi-client --save

waapi-client is normally used in conjunction with waapi module:

npm install waapi --save

waapi-client also comes with TypeScript definitions.

Example

This example is a Node.js TypeScript example using ES2015 js target.

import * as waapi from 'waapi-client';
import {ak} from 'waapi';

async function main() {
    try {
        var session = await waapi.connect('ws://localhost:8080/waapi');

        var wwiseInfo = await session.call(ak.wwise.core.getInfo, {});
        console.log(`Connected to ${wwiseInfo.displayName} ${wwiseInfo.version.displayName}!`);
    }
    catch(e){
        console.log(`exception: ${JSON.stringify(e,null,4)}`);
    }
}

main();

Refer to hello-wwise on GitHub for a more complete example.

Keywords

wwise

FAQs

Package last updated on 11 Apr 2018

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