1.7.0 • Published 8 months ago

wonderflow-usabilla v1.7.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

usabilla-api

Description

Unofficial Usabilla API client for node.js applications

Getting started

Install the client with npm

$ npm install wonderflow-usabilla --save

Usage

Basic usage example: retrieving a list of buttons and their feedback

const Usabilla = require('wonderflow-usabilla')
const usabilla = new Usabilla('access-key', 'secret-key')

const buttons = await usabilla.websites.buttons.get()

for (const { id } of buttons.items) {
    const feedback = await usabilla.websites.buttons.feedback.get({ id })

    ...
  }

Documentation

For more information about the API usage, please refer to Usabilla documentation available through the official developers guide.

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Pull request checklist

  • Impacted code has new or updated tests
  • Ensure any install or build dependencies are removed
  • Update the README.md with details of changes to the interface
  • Check and fix code formatting and style: npx standard --fix
  • Pass all of the tests locally: npm run test
1.7.0

8 months ago

1.6.0

1 year ago

1.5.0

1 year ago