Skip to content

Latest commit

 

History

History
82 lines (59 loc) · 2.98 KB

README.md

File metadata and controls

82 lines (59 loc) · 2.98 KB

Functional point-free utilities for fetch

[WIP]

travis npm size coveralls code quality

code pen

Table of Contents

What is this?

It's a simple collection of functional utilities for fetch written in typesctipt.


Installation

npm:

npm i -S pointless-fetch

browser:

<!-- ES2015 -->
<script type="module">
  import { subUrl, request, query } from 'https://unpkg.com/pointless-fetch';

  // use it here
</script>

<!-- ES5 with IE11+ general syntax polyfills, global object - `pointless` -->
<!-- Polyfill `window.Promise` and `Object.assign` yourself! -->
<script src="https://unpkg.com/pointless-fetch/dist/umd.js"></script>

Importing

// TS-module (pure typescript),
// allows compilation settings to be set from the project config
import { subUrl, request, query } from 'pointless-fetch/src';

// ES-module (npm/node, typescript)
import { subUrl, request, query } from 'pointless-fetch';

// ESNext (no polyfills for esnext)
import { subUrl, request, query } from 'pointless-fetch/dist/esnext';

// ES-module (browser, node)
import { subUrl, request, query } from 'https://unpkg.com/pointless-fetch';

// Classic node commonjs
const { subUrl, request, query } = require('pointless-fetch/dist/js');

Something's missing or found a bug?
Feel free to create an issue! 😉