![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
@gathertown/sendbird-platform-sdk-typescript
Advanced tools
OpenAPI client for sendbird-platform-sdk-typescript
This is a Node.js package written in Typescript that makes talking to the Sendbird Platform API easier.
With this library you can extend your Sendbird integration to include advanced features like message-, and channel automation, user management, create user authentication tokens, and create bots.
build
automatically when running npm run publish
To publish, make sure you update the version using the appropriate npm version
command and then run npm publish
.
import * as sendbird from 'sendbird-platform-sdk-typescript';
const APP_ID = "YOUR_APP_ID_FROM_DASHBOARD";
const API_TOKEN = "YOUR_MASTER_API_TOKEN_FROM_DASHBOARD";
const serverConfig = new sendbird.ServerConfiguration("https://api-{app_id}.sendbird.com", { "app_id": APP_ID })
const configuration = sendbird.createConfiguration({ baseServer : serverConfig });
const userAPI = new sendbird.UserApi(configuration);
// List users, use the next token in the response to get the next page of users in subsequent requests
userAPI.listUsers(API_TOKEN, '', 10).then((users) => {
console.log("Listing first 10 users:\n")
console.log(users)
}).catch((error) => {
console.log("Error listing users")
console.log(error)
})
// How to create a user
const userData: sendbird.CreateUserData = {
userId: "bob_smith",
nickname: "Bob",
profileUrl: "https://cataas.com/c"
}
userAPI.createUser(API_TOKEN, userData).then((user) => {
console.log("User created:\n")
console.log(user)
}).catch((error) => {
console.log("Error creating user:")
console.log(error)
})
In order to make requests with this SDK you will need you master API token. This can be found through the Sendbird dashboard. Each app you create in Sendbird has its own master api token. These tokens can be found in Settings > Application > General.
You will need Node.js installed. This has been developed and tested with NodeJS 17+.
🚨 Package not yet in npm 🚨
npm install sendbird-platform-sdk-typescript
sendbird-platform-sdk-typescript
directorynpm install
npm install /path/to/sendbird-platform-sdk-typescript --save
All the documentation for this project lives in the /docs directory of this repo.
Documentation | |
---|---|
Announcement | docs/AnnouncementApi.md |
Application | docs/ApplicationApi.md |
Bot | docs/BotApi.md |
GroupChannel | docs/GroupChannelApi.md |
Message | docs/MessageApi.md |
OpenChannel | docs/OpenChannelApi.md |
User | docs/UserApi.md |
Webhooks | docs/WebhooksApi.md |
FAQs
OpenAPI client for sendbird-platform-sdk-typescript
The npm package @gathertown/sendbird-platform-sdk-typescript receives a total of 2,096 weekly downloads. As such, @gathertown/sendbird-platform-sdk-typescript popularity was classified as popular.
We found that @gathertown/sendbird-platform-sdk-typescript demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.