Skip to main content

Overview#

This guide will help you start integrating the Jabra library into your softphone app.

If your solution works in a browser, refer to Getting Started in the Browser) instead.

Prerequisites#

Install the NPM package#

You can do so by running the following command in a terminal:

npm i @gnaudio/jabra-js --save

Importing the NPM package#

We support both CommonJS (require) and EcmaScript (import) syntax. In the example below, the module is imported using CommonJS.

See our guide on Modules Import Strategies to learn more about different import formats.

const jabra = require('@gnaudio/jabra-js/node-cjs');
jabra.init().then((api) => {
// Library initialized...
});

That's it! You can start integrating the Jabra library into your solution.

Next steps#

Create your first app that uses the Jabra library by following the Hello World Guide.