@anzerr/request.libary

http request util

Usage no npm install needed!

<script type="module">
  import anzerrRequestLibary from 'https://cdn.skypack.dev/@anzerr/request.libary';
</script>

README

Intro

GitHub Actions status | linter GitHub Actions status | publish GitHub Actions status | test

Simple request object without having to pull 47 extra packages

Install

npm install --save git+https://github.com/anzerr/request.libary.git
npm install --save @anzerr/request.libary

Example

const Request = require('request.libary');

new Request('https://google.com').get('/').then((res) => {
    console.log(res.status(), res.body().toString());
});