Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/extensionsapp/reqit

Simple http request for NodeJS
https://github.com/extensionsapp/reqit

Last synced: 7 days ago
JSON representation

Simple http request for NodeJS

Awesome Lists containing this project

README

        

# Simple request for NodeJS.

reQit, npm package for NodeJS

### Installation
```
npm i regit
```

### Usage

Get Google status, title and body:

```javascript
const reqit = require('reqit');

reqit({
url: 'https://www.google.com',
charset: 'utf-8'},
(error, result) => {
console.log(result);
});
// {status: 200, title: 'Google', body: '...'}
```

© 2018 ExtensionsApp