Skip to content

migme/beachball

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jun 3, 2015
f31a04f · Jun 3, 2015
Jun 2, 2015
May 21, 2015
May 21, 2015
Apr 9, 2015
Mar 26, 2015
Apr 9, 2015
Jun 2, 2015
Apr 9, 2015
May 11, 2015
Jun 2, 2015
Jun 2, 2015
Jun 3, 2015

Repository files navigation

Beachball

Migme JavaScript SDK. Throws data to the Migme API.

Gitter Codeship Travis CI Codecov JavaScript Standard Style npm npm GitHub Releases

Beachball Migbot

Installation

NPM

npm install migme-beachball

CDN

Replace ${VERSION} with a released version number.

<script src="https://cdn.rawgit.com/migme/beachball/releases/download/${VERSION}/migme-beachball.min.js"></script>

Usage

Loading

// ES6
import Beachball from 'migme-beachball'

// CommonJS
var Beachball = require('migme-beachball')

// AMD
define(['migme-beachball'], function (Beachball) {
  // ...
})

Initialization

const client = new Beachball({
  // options
})

Development

npm install # Install dependencies
npm test    # Test only
grunt build # Build only
grunt       # Test, then build