/clubhouse-lib

The official Node.js client library for the Clubhouse API.

Primary LanguageJavaScript

Clubhouse-lib

A promise based interface to the Clubhouse API

CircleCI

Install

npm install --save clubhouse-lib

Usage

import Clubhouse from 'clubhouse-lib';

const client = Clubhouse.create('your token value');

client.listMembers().then(console.log);

client.getMember('')
  .catch(x => console.error(x.body))
  .then(console.log);

client.listProjects().then(console.log);