1.0.0 • Published 1 year ago

@wemnyelezxnpm/nihil-asperiores-ipsam v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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 @wemnyelezxnpm/nihil-asperiores-ipsam --save

Usage

import { fetch } from "@wemnyelezxnpm/nihil-asperiores-ipsam";

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 @wemnyelezxnpm/nihil-asperiores-ipsam/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 "@wemnyelezxnpm/nihil-asperiores-ipsam";

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

json-schema-validationtypeofcharactersjsdompreserve-symlinksmoduleparentsglobIteratorcommand-linecolourwhichzerohelperstypeerrorsigintdotenvwalkshimonceCSSrgbextensionruntimeESwhatwgstablefindLasttestingauthhookformlogmomentrmdirdatastructureoptionstyleguideeverysharedbindfileArrayexitObject.valuesflagstypeObservableECMAScript 7collection.es6assertnopeairbnbfind-uppyyamlECMAScript 2023Object.fromEntriestrimLeftwebqueueMicrotaskES7bufferflateslintSetsyntaxstringifierlook-uptrimEndboundECMAScript 2018setPrototypeOfpackage managerpromiseopenpropeventDispatcherexpressStreamsharmonymkdirpeast-asian-widthsymlinkcore-jsclienttypedarrayfull-widthsetImmediatebootstrap cssentriestoArrayshellmime-dbstylesvalidaterecursiveesstringifyfunctionaldiffpostcss-pluginmergexdgInt32Arraywordbreakeventsjson-schema-validatortc39performantreadablestreaminstallerHyBiexpressionemitecmascriptthreeforEachhttpdomtestwatchconfigurableappprocessUnderscoreArray.prototype.flattenweakmapresolveoperating-systemcomputed-typesnegative zeroarraysmovees2016prefixTypeBoxdeepclonelintjQuerycode pointsweaksetinvariantexecutableuninstallprettydayjscircularindicatorinternalMicrosoftdefinePropertyequalpositiveserializerCSSStyleDeclarationincludesmobilereadableio-tsReflect.getPrototypeOfomittelephoneworkerlazyStreamfinduphookspostcssInt16Arraystreamssliceiterationmetadatatyped arraymatchAllbddinternal slotratelimitArray.prototype.flatinferencebyteLengthgettersymlinksaccessibilitycmdECMAScript 2017lockfilebundlingyamlmkdirswordwrapfastclonecreatedefinecontainsUint16ArraytoStringTagshaminstalleslintpluginmatch[[Prototype]]hasdescriptionString.prototype.triminspectBigInt64ArraycompareoffsetcoreregexserializesafejsonschemafullwidthconcatwrapPromisefast-clonebcryptlaunchUint8ClampedArraywaitpackagesArray.prototype.findLastcss-in-jsdropfastsanitizefindLastIndexbytesomelastxssredactisConcatSpreadabledebugReactiveXECMAScript 2019mimecorslinuxnpmwaapidebuggerlanguageencryptionpathpromisesaccessorreuseextendvaluessettingstypedarrayssetcolorsearchdirectoryfindopeneres8errorregular expressionObject.definePropertycommandernodecolumn$.extendtouchvariables in cssUint32ArrayphoneimportArray.prototype.filterES2016editorreact-hookserror-handlingcheck3dimmutablelistenersa11yObject.getPrototypeOfpackage.jsonpropertiesES6rateschemaletvarcryptoreact posedependency managermochaECMAScript 2021robustrandomdataviewes5typedterminalfolderquerystringes6concatMapxdg-opentypestssideES2017limitdescriptorstrimStartpackagestylingtranspilesetterenvironmentoutputinterruptsurlconfigECMAScript 2016ECMAScript 6StyleSheetclassnamestoolkitjson-schemaless mixinsconsolefunctionUint8ArrayFunction.prototype.nameRegExp#flagsformathardlinkshttpsArray.prototype.flatMaputilitySymbolArray.prototype.findLastIndexshrinkwrappnpm9codesBigUint64Arrayless cssdeep-clonereduceiejestdeep-copyES2019fastifyfixed-widthstartrapidkeyfpArrayBufferastgraphqlloggingcryptMapframeworkjsxunicode6to5callboundgradients css3pureprivateWebSocketsframerpipeexeES2022quotefantasy-landInt8Arrayjavascriptcurlbreak@@toStringTagtacitminimalsortedutildeletesyntaxerrorsigtermtraversesymbolsconstpolyfillvariableschaiES2018Object.assignassertsdefaultargvmimetypes256banneravastatelessmacoscssflattenescapewebsiteajvzodcollectionfast-deep-copyarraybuffergroupByassignwritablebrowserargumentspruneinputprotocol-buffersfunctionscss lessauthenticationthroatfile systemawaitwindowsstylecharacterponyfillform-validationslotlinkbundler
1.0.0

1 year ago