@cloudseat/http-clientdeprecated

Promise based HTTP/HTTPS client for node.js

Usage no npm install needed!

<script type="module">
  import cloudseatHttpClient from 'https://cdn.skypack.dev/@cloudseat/http-client';
</script>

README

A super lightweight HTTP / HTTPS client can be used in any Node.js project. Although it's not as powerful as request / axios / superagent, it is sufficient for common development scenarios, such as calling third-party APIs and obtaining remote pictures.

Installation

npm install @cloudseat/http-client

Usage

const http = require('@cloudseat/http-client')

const result = await http.get(url[, options])
const result = await http.post(url[, data][, options])
const result = await http.put(url[, data][, options])
const result = await http.del(url[, options])
const result = await http.request(options)

Parameters

  • url - Request url. Supports http/https protocol.
  • data - Send data. Supports string, json object, buffer, arraybufferand stream.
  • options
    • method - GET(default), POST, PUT, DELETE.
    • headers - The Content-Type defaults to application/json.
    • responseType - Supports arraybuffer, stream or null.