hiroppy / devchat

A devchat.tv's client.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

devchat

Build Status codecov npm version

A devchat.tv's client.

Install

$ npm i devchat

Usage

const devchat = require('devchat');

devchat
  .getPodCasts('category')
  .then((res) => {
    console.log(res);
  })
  .catch((err) => {
    console.error(err);
  });

devchat
  .getPodCast('category', 'title')
  .then((res) => {
    console.log(res);
  })
  .catch((err) => {
    console.error(err);
  });

About

A devchat.tv's client.

License:MIT License


Languages

Language:JavaScript 100.0%