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.
- Host: GitHub
- URL: https://github.com/hiroppy/devchat
- Owner: hiroppy
- License: mit
- Created: 2017-06-20T09:46:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-08-17T02:53:32.000Z (over 5 years ago)
- Last Synced: 2025-03-21T01:28:27.678Z (about 1 year ago)
- Topics: devchat
- Language: JavaScript
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# devchat
[](https://travis-ci.org/abouthiroppy/devchat)
[](https://codecov.io/gh/abouthiroppy/devchat)
[](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);
});
```