npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ekolabs/eko-js-sdk

v0.1.4

Published

A lightweight SDK that allows for easy integration of eko videos into webpages.

Downloads

857

Readme

eko-js-sdk

A lightweight SDK that allows for easy integration of eko videos into webpages

Installation

From your favorite CLI tool:

npm install @ekolabs/eko-js-sdk

API

EkoPlayer

Initialize an instance of the EkoPlayer to play an eko video.

Static

isSupported()

Will return true if playing eko projects is supported in your current web browser.

Example

if (!EkoPlayer.isSupported()) {
    alert('Eko is not supported on current environment');
}

Methods

EkoPlayer(el)

Creates an instance of an EkoPlayer. | Param | Type | Description | | :-------------: |:--------------:| :------------| | el | Element, String | The container element to be used by the player, or a DOM selector string for the container element. |

load(id, options)

Will load and display an eko project. The EkoPlayerView will display the loading animation while it prepares the project for playback. Returns a promise that will fail if the project id is invalid.

| Param | Type | Description | | :-------------: |:--------------:| :------------| | id | String | The eko video id to load and display. | | options | Object | Options for project delivery. | | options.params | Object | A dictionary of embed params that will affect the delivery. Default includes {autoplay: true}.| | options.events | String[] | A list of events that should be forwarded. | | options.cover | Element, string, function | An element or the query selector string for a loading cover. When loading happens a eko-player-loading class will be added to the element. When loading completes, the eko-player-loading class will be removed and replaced with eko-player-loaded. Once video begins playback, the eko-player-loaded class will be removed and replaced by eko-player-started. If a function is passed, it will be invoked with a string argument (state) whenever the state changes. Some states may also include a 2nd object argument which contains properties pertaining to the state. The possible state values are loading (cover should be shown), loaded (cover should be hidden and play button shown) and started (both cover and play button should be hidden). If no cover is provided, the default eko loading cover will be shown. | | options.iframeAttributes | Object | standard attributes of iframe HTML element. | | options.excludePropagatedParams | String[] | By default, all query string params present on the page will be forwarded onto the video iframe. In order to exclude params from being forwarded, you can supply an array of query param keys (strings or regexes) to list the params that should not be propagated. |

Example

let ekoPlayer = new EkoPlayer('#myContainer', '1.0');
ekoPlayer.load('AWLLK1', {
    params: {
        autoplay: false,
        clearcheckpoints: true,
        debug: true
    },
    events: ['nodestart', 'nodeend', 'playing', 'pause'],
    cover: '#myCoverId',
    iframeAttributes: { title: 'My Eko Player' }
});

play()

Will play/resume eko video project.

pause()

Will pause eko video project.

invoke(method, ...args)

Will call any player function defined on the eko developer site. Can also be used to set properties.

| Param | Type | Description | | :-------------: |:--------------:| :------------| | method | String | The player method to call. | | args | Any | Any arguments that should be passed into the method (must be serializable to json) |

Example

ekoPlayer.invoke('play'); // Plays the eko project
ekoPlayer.invoke('audio.play', 'ping'); // Plays the "ping" sound effect via the audio plugin
ekoPlayer.invoke('seek', 'myNodeId', 10); // Seeks 10s into myNodeId

The args array is serialized using the structured clone algorithm. This means that functions cannot be sent as args.

on(eventname, callbackFn)

The eko player triggers a number of events. The app can listen to these events by providing the event name in the load call. The callbackFn will be invoked with the arguments passed by the triggered event.

off(eventname, callbackFn)

once(eventname, callbackFn)

dispose()

Will dispose EkoPlayer instance

Example

const ekoPlayer = new EkoPlayer('#myContainer');
ekoPlayer.dispose();

Default Player Events

canplay

Triggered when the player has buffered enough media to begin playback.

playing

Triggered when playback has begun.

URLs and Sharing

If you wish to handle opening urls or social sharing yourself, simply add the following events to the options in the load call:

  • urls.intent
  • share.intent

Example

let ekoPlayer = new EkoPlayer('#myContainer');

// Handle opening URLs in parent frame
ekoPlayer.on('urls.intent', ({ url }) => {
    window.open(url, '_blank');
});

// Must pass the 'urls.intent' event at load() time
// in order to be able to listen to this event
ekoPlayer.load('AWLLK1', {
    events: ['urls.intent']
});