DEV Community

David Snyder
David Snyder

Posted on

3 2

Twitchio.js: A better way to interact with twitch services

🤔 What's this all about?

Twitchio.js provides functions that make it easy to interact with Twitch API and other twitch related services including but not limited to the helix API, the Kraken API, the BTTV API, and the FFZ API.
at its most basic Twitchio wraps twitch API credentials with the fetch function so you don't have to pass them in every time, but it also has functions that get data from different API endpoints for you with basic inputs.

⚡ Quick and easy implementation

step 1:

//Install:
npm i twitchio-js

//Then, paste this at the top of your JavaScript file:
const TwitchIO = require("twitchio-js");
// or
import TwitchIO from "twitchio-js")
Enter fullscreen mode Exit fullscreen mode

Step 2: Use any of the commands explained the Documentation to interact with twitch services however you like.

For the Future

If you want to contribute and make this much better for developers, please have a look at Contributing Manual to understand the contribution steps.

If you can help us with these. Please don't hesitate to open a pull request.

  • Adding More functions
    • functions for kraken endpoints
    • more functions for helix endpoints
  • Improving the documentation

If you created something awesome and want to contribute then feel free to open Please don't hesitate to open an pull request.

GitHub logo GypsyDangerous / twitchio-js

Twitchio.js is a twitch API wrapper that makes it easier to interact with the Twitch API and other twitch related API's

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (0)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.

Postgres on Neon - Get the Free Plan

No credit card required. The database you love, on a serverless platform designed to help you build faster.

Get Postgres on Neon

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay