Skip to content

Commit

Permalink
rename to microreq
Browse files Browse the repository at this point in the history
  • Loading branch information
Andras committed Dec 4, 2017
1 parent c9c78d5 commit 2a60874
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
@@ -1,14 +1,14 @@
micro-request
=============
[![Build Status](https://api.travis-ci.org/andrasq/node-micro-request.svg?branch=master)](https://travis-ci.org/andrasq/node-micro-request?branch=master)
[![Coverage Status](https://codecov.io/github/andrasq/node-micro-request/coverage.svg?branch=master)](https://codecov.io/github/andrasq/node-micro-request?branch=master)
microreq
========
[![Build Status](https://api.travis-ci.org/andrasq/node-microreq.svg?branch=master)](https://travis-ci.org/andrasq/node-microreq?branch=master)
[![Coverage Status](https://codecov.io/github/andrasq/node-microreq/coverage.svg?branch=master)](https://codecov.io/github/andrasq/node-microreq?branch=master)


Very thin convenience wrapper around `http.request` to make it usable more like
Extremely thin convenience wrapper around `http.request` to make it usable more like
[`request`](https://npmjs.com/package/request) but without the size, speed or cpu
overhead. No frills, just convenience.

var request = require('micro-request');
var request = require('microreq');

var req = request("https://github.com/andrasq", function(err, res, body) {
// err is any socket error
Expand Down Expand Up @@ -49,7 +49,7 @@ Options:
noResListen: return as soon as the response header arrives, let the caller listen
for `res.on('data')` and `res.on('end')`.

The above options control the behavior of `micro-request`; all other options are sent
The above options control the behavior of `microreq`; all other options are sent
on to `http`.


Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,11 +1,11 @@
{
"name": "micro-request",
"name": "microreq",
"version": "0.9.0",
"description": "tiny convenience wrapper around http.request",
"main": "index.js",
"author": "Andras",
"license": "Apache-2.0",
"repository": "https://gitnub.com/andrasq/node-micro-request#readme",
"repository": "https://gitnub.com/andrasq/node-microreq#readme",
"keywords": [ "http", "request", "small", "quick", "minimal", "thin", "light" ],
"engies": {
"node": ">= 0.11"
Expand Down

0 comments on commit 2a60874

Please sign in to comment.