An open API service indexing awesome lists of open source software.

https://github.com/hiroppy/devchat

A devchat.tv's client.
https://github.com/hiroppy/devchat

devchat

Last synced: 9 months ago
JSON representation

A devchat.tv's client.

Awesome Lists containing this project

README

          

# devchat
[![Build Status](https://travis-ci.org/abouthiroppy/devchat.svg?branch=master)](https://travis-ci.org/abouthiroppy/devchat)
[![codecov](https://codecov.io/gh/abouthiroppy/devchat/branch/master/graph/badge.svg)](https://codecov.io/gh/abouthiroppy/devchat)
[![npm version](https://badge.fury.io/js/devchat.svg)](https://badge.fury.io/js/devchat)

A [devchat.tv](https://devchat.tv/)'s client.

## Install
```
$ npm i devchat
```

## Usage
```javascript
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);
});
```