Skip to content

eleven41/skeddly-sdk-js

Repository files navigation

Skeddly SDK for JavaScript

NPM

Build status

The official Skeddly SDK for JavaScript, available for Node.js backends.

Installing

In Node.js

The preferred way to install the Skeddly SDK for Node.js is to use the npm package manager for Node.js. Simply type the following into a terminal window:

npm install skeddly-sdk

Usage and Getting Started

In Node.js

In your JavaScript file, require the library:

// import the Skeddly SDK
var Skeddly = require('skeddly-sdk');

then create your Skeddly client:

var client = Skeddly.createClient({
    accessKeyId: 'sk_12345678901234567890123456789012'
});