Skip to main content

Installation

Let's install the Wazo EUC Plugins SDK in less than 5 minutes.

Prerequisites

Before starting, we suggest being familiar with the following subjects to ease your experience.

info

New to web technologies? We suggest this guide: Getting started with the web.

Using a Package Manager

You can install our SDK with your favorite package manager in the following ways:

# NPM
npm install @wazo/euc-plugins-sdk

# YARN
yarn add @wazo/euc-plugins-sdk

Then import the SDK in any file of your project.

import { App } from '@wazo/euc-plugins-sdk';
const app = new App();

Using a Content Delivery Networks (CDN)

Alternatively, you can load the Wazo SDK from a CDN. Use one of the following Content Delivery Networks:

UNPKG

import { App } from 'https://unpkg.com/@wazo/euc-plugins-sdk@latest/lib/esm/app.js';
import softphone from 'https://unpkg.com/@wazo/euc-plugins-sdk@latest/lib/esm/softphone.js';

const app = new App();

jsDelivr

import { App } from 'https://cdn.jsdelivr.net/npm/@wazo/euc-plugins-sdk@latest/lib/esm/app.js';
import softphone from 'https://cdn.jsdelivr.net/npm/@wazo/euc-plugins-sdk@latest/lib/esm/softphone.js';

const app = new App();

What's Next?

🎉 Good job, you officially installed our SDK. The next step is to decide if you want to build a plugin to extend our products or integrate a softphone in an external system.

Enjoy!