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

sendbird-await

v1.0.13

Published

Sendbird await module for Platform API.

Downloads

192

Readme

sendbird-await

Sendbird await module for Platform API

Requirements

node v8.4.0 Higher

Installation

npm install sendbird-await --save

Usage

See Sendbird Documentation for payload and response details. You must provide your API Token when creating a new instance of Sendbird and it will be attached to all requests.

const SendbirdAwait = require('sendbird-await');
let Sendbird = new SendbirdAwait(/* sendbird api token here */);

The Sendbird instance we just created has an entry for each endpoint in the Sendbird Platform API, it is an object with the endpoints methods.

Sendbird.user Sendbird.openchannel Sendbird.groupchannel Sendbird.message Sendbird.metadata

Example

To create a user you would simply need to have something like this:

'use strict';

const SendbirdAwait = require('sendbird-await');
let Sendbird = new SendbirdAwait('<YOUR API TOKEN>');

class Test {
    async userList() {
        let users = await Sendbird.user.list();
        return users;
    }

    async userCreate() {
        let params = {
            user_id: 'nexus11',
            nickname: 'sendbirdFirstUser',
            profile_url: 'https://yourimages.location.url'
        };
        let user = await Sendbird.user.create(params);
        return user;
    }

    async createOpenChannel() {
        let params = {
            name: 'FirstOpenChannel'
        };
        let openChannel = await Sendbird.openchannel.create(params);
        return openChannel;
    }

    async createGroupChannel() {
        let params = {
            name: 'FirstGroupChannel',
            is_public: true
        };
        let groupChannel = await Sendbird.groupchannel.create(params);
        return groupChannel;
    }

    async sendMessage() {
        let params = {
            channel_type: 'group_channels',
            channel_url: '<Sendbird group channel name>' // ex) sendbird_group_channel_123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZ,
            user_id: 'nexus11',
            message: 'Hi, First messgae!',
            message_type: 'MESG' //MESG, FILE, ADMM
        };
        let msg = await Sendbird.message.send(params);
        return msg;
    }
}

module.exports = new Test();

[test for NodeJS CLI]
$> node -e 'require("./Test").createOpenChannel()'