0.1.0 • Published 12 years ago

request-iconv v0.1.0

Weekly downloads
6
License
-
Repository
-
Last release
12 years ago

Request with iconv -- Simplified HTTP request method With iconv

Install

Or from source:

Super simple to use

Request is designed to be the simplest way possible to make http calls. It support HTTPS and follows redirects by default.

var request = require('request').set("Shift_JIS");

request('http://mysite', function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body)
  }
})