twitch-new-api
TypeScript icon, indicating that this package has built-in type declarations

2.0.6 • Public • Published

Install

npm i twitch-new-api

Basic Usage

This package is written in TypeScript, so you can use it in both js and ts.

All of the methods are self documented, providing a good developer experience.

import { TwitchApi, TwitchCredentials } from '../src';

const twitchCredentials: TwitchCredentials = {
  id: 'twitch.client.id',
  secret: 'twitch.client.secret',
};

const twitch = new TwitchApi(twitchCredentials);

(async () => {
  const user = await twitch.getUserByName(['mechiller']);
  const profilePicture = user[0].profile_image_url;
})();

Contribution

I made this package for my own usage, if you need something specific, please, make an issue or PR.

License - MIT

Readme

Keywords

Package Sidebar

Install

npm i twitch-new-api

Weekly Downloads

3

Version

2.0.6

License

MIT

Unpacked Size

15 kB

Total Files

8

Last publish

Collaborators

  • sorooshmerajiyan