12.1.2 • Published 5 months ago

popsicle v12.1.2

Weekly downloads
251,862
License
MIT
Repository
github
Last release
5 months ago

Popsicle

NPM version NPM downloads Build status Test coverage Bundle size

Advanced HTTP requests in node.js and browsers, using Servie.

Installation

npm install popsicle --save

Usage

import { fetch } from "popsicle";

const res = await fetch("http://example.com");
const data = await res.text();

Popsicle is a universal package, meaning node.js and browsers are supported without any configuration. This means the primary endpoint requires some dom types in TypeScript. When in a node.js or browser only environments prefer importing popsicle/dist/{node,browser} instead.

Popsicle re-exports Request, Response, Headers and AbortController from servie. The fetch function accepts the same arguments as Request and returns a promise that resolves to Response. You can use the Signal event emitter (from AbortController#signal) to listen to request life cycle events.

Browser

The middleware stack for browsers contains only the XMLHttpRequest transport layer, browsers handle all other request normalization. This means a smaller and faster package for browsers.

Node.js

The middleware stack for node.js includes normalization to act similar to browsers:

Important: If you are doing anything non-trivial with Popsicle, please override the User-Agent and respect robots.txt.

Recipes

Aborting a Request

import { fetch, AbortController } from "popsicle";

const controller = new AbortController();

setTimeout(() => controller.abort(), 500);

const res = fetch("http://example.com", {
  signal: controller.signal,
});

Errors

Transports can return an error. The built-in codes are documented below:

  • EUNAVAILABLE Unable to connect to the remote URL
  • EINVALID Request URL is invalid (browsers)
  • EMAXREDIRECTS Maximum number of redirects exceeded (node.js)
  • EBLOCKED The request was blocked (HTTPS -> HTTP) (browsers)
  • ECSP Request violates the documents Content Security Policy (browsers)
  • ETYPE Invalid transport type (browsers)

Customization

Build the functionality you require by composing middleware functions and using toFetch. See src/node.ts for an example.

Plugins

Creating Plugins

See Throwback for more information:

type Plugin = (
  req: Request,
  next: () => Promise<Response>,
) => Promise<Response>;

TypeScript

This project is written using TypeScript and publishes the types to NPM alongside the package.

Related Projects

  • Superagent - HTTP requests for node and browsers
  • Fetch - Browser polyfill for promise-based HTTP requests
  • Axios - HTTP request API based on Angular's $http service

License

MIT

@bechtel/oauth-utility@bechtel/oauth-utility101@bechtel/oauth-utility102@bechtel/oauth-utility13@bechtel/oauth-utility14@bechtel/oauth-utility20@bechtel/oauth-utility200@bechtel/oauth-utility21@depabc/oauth-utility@depabc/oauth-utility1@depabc/oauth-utility12@depabc/oauth-utility13@depabc/oauth-utility2@depabc/oauth-utility4@depabc/oauth-utility5@depabc/oauth-utility6@depabc/oauth-utility7@depabc/oauth-utility8@depabc/oauth-utility9dci-client-oauth2zdt-intuit-auth@bechtel/oauth-utility15@everything-registry/sub-chunk-2457e-api-emotion3.0.0graphql-auto-mutationgraphcool-webhook-invokerexample-apitestget-eth-price@wirelineio/sdk@wirelineio/util@wirelineio/identity-clientag-client-oauth2kodabotkoala-serverkryptokrona-service-rpc-jslearning_lockerleantegra-rest-apiingresse-sdkredux-popsicleistelaudantiumitch-graphqlintuit-oauth-tsinstagram-apitest@venncity/prisma-datamodel@venncity/prisma-generate-schemaattlaz-clientspectrum-bot@drush-io/api-clientlisk-jslive-content-api@dcindonesia/client-oauth2bbrewmashape-animetrics-face-apimashape-weather-apitestbravia-remotebouquet-js@bu-analytics/pluginscrape-metaada-apiblink-datacelldb-jscocoon-cloud-sdkn8n-nodes-caldavmailgun-node-js@ghaislip/intuit-oauthukey1-react-sdktypings-coreturtlecoin-walletd-rpc-jsbuild-utilitiesmos-execution-apiscolor-oftritoncoin-walletd-rpctritoncoin-walletd-rpc-js@ish-cd/api-clientmoneylover-climoneylover-clientthing-ifthing-if-sdkclient-oauth2client-oauth2-csclient-oauth2-modtsmvcoctopus-deploy-clientoxy-nano-js@privyid/dci-client-oauth2nisiea@livescale/client-oauth2vindaloovoicebase-v-2-beta-rest-api@essential-projects/http@essential-projects/http_contracts@hngrytrl/circle-api-client@earthling-interactive/intuit-oauthnode-ncbiverify-javascript-sdkwire-webapp-corewikitreepmill-affiliate-tracking-1pmill-affiliate-tracking-2
12.1.2

5 months ago

12.1.1

5 months ago

12.1.0

4 years ago

12.0.6

4 years ago

12.0.5

4 years ago

12.0.4

5 years ago

12.0.3

5 years ago

12.0.2

5 years ago

12.0.1

5 years ago

12.0.0

5 years ago

11.0.5

5 years ago

11.0.4

5 years ago

11.0.3

5 years ago

11.0.2

5 years ago

11.0.1

5 years ago

11.0.0

6 years ago

11.0.0-3

6 years ago

11.0.0-2

6 years ago

11.0.0-1

6 years ago

10.0.1

6 years ago

11.0.0-0

6 years ago

10.0.0

6 years ago

9.2.0

6 years ago

9.1.0

7 years ago

9.0.0

7 years ago

8.2.0

8 years ago

8.1.1

8 years ago

8.1.0

8 years ago

8.0.4

8 years ago

8.0.3

8 years ago

8.0.2

8 years ago

8.0.1

8 years ago

8.0.0

8 years ago

7.0.1

8 years ago

7.0.0

8 years ago

6.2.2

8 years ago

6.2.1

8 years ago

6.2.0

8 years ago

6.1.0

8 years ago

6.0.0

8 years ago

5.0.1

8 years ago

5.0.0

8 years ago

4.0.0

8 years ago

3.2.2

8 years ago

3.2.1

8 years ago

3.2.0

8 years ago

3.1.1

8 years ago

3.0.3

8 years ago

3.0.2

8 years ago

3.0.1

8 years ago

3.0.0

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.4.0

8 years ago

1.3.2

8 years ago

1.3.1

8 years ago

1.3.0

8 years ago

1.2.2

8 years ago

1.2.1

8 years ago

1.2.0

8 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.5.13

9 years ago

0.5.12

9 years ago

0.5.11

9 years ago

0.5.10

9 years ago

0.5.9

9 years ago

0.5.8

9 years ago

0.5.7

9 years ago

0.5.6

9 years ago

0.5.5

9 years ago

0.5.4

9 years ago

0.5.3

9 years ago

0.5.2

9 years ago

0.5.1

9 years ago

0.5.0

9 years ago

0.4.0

9 years ago

0.3.11

9 years ago

0.3.10

9 years ago

0.3.9

9 years ago

0.3.8

9 years ago

0.3.7

9 years ago

0.3.6

9 years ago

0.3.5

9 years ago

0.3.4

9 years ago

0.3.3

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago