Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

node-modules/urllib-sync

Repository files navigation

urllib-sync

NPM version build status Test coverage David deps node version Gittip

sync http request powered by urllib and spawnSync.

Notice: Only support node v0.11.13+

Installation

$ npm install urllib-sync --save

Usage

var request = require('urllib-sync').request;

var res = request('https://github.com');
// res should have status, data, headers

more options please check out urllib. But unfortunately, urllib-sync do not support streams and agents now.

writeFile

If options.writeFile is present, the result of request will write into this file directly.

License

MIT