superagent-charset
Version:
add charset support for node's superagent
51 lines (38 loc) • 1.66 kB
Markdown
# superagent-charset
> add charset support for node's superagent
[](https://travis-ci.org/magicdawn/superagent-charset)
[](https://codecov.io/gh/magicdawn/superagent-charset)
[](https://www.npmjs.com/package/superagent-charset)
[](https://www.npmjs.com/package/superagent-charset)
[](http://magicdawn.mit-license.org)
[](https://greenkeeper.io/)
## Install
```js
$ npm i superagent-charset --save
```
## API
### install
```js
const request = require('superagent')
require('superagent-charset')(request)
```
this will add `request.Request.prototype.charset`
### charset
`.charset(encoding)` , will passed to [iconv-lite](https://github.com/ashtuchkin/iconv-lite)
```js
const should = require('should')
const request = require('superagent')
require('superagent-charset')(request) // install charset
describe('Basic Test', function() {
it('it works', function(done) {
request.get('http://www.sohu.com/')
.charset('gbk')
.end((err, res) => {
res.text.should.match(/搜狐/)
done(err)
})
})
})
```
## License
the MIT License, http://magicdawn.mit-license.org