Version 1.0.9 (released 2023) is a thin wrapper around node-fetch for making HTTP API calls from Node.js. It provides a simple fetch-like interface but adds no significant functionality beyond the underlying library. The package is in an early draft stage, with sparse documentation and no active maintenance. Key differentiators: none — it replicates node-fetch without added value. Release cadence: no recent updates.
npm install cloud-out-loud-node-fetchNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic GET request using the package's default export, handling response JSON and errors.
Import additional fetch utilities directly from 'node-fetch'.
Use default import: `import fetch from 'cloud-out-loud-node-fetch'`.
Switch to 'node-fetch' (CJS/ESM) or 'undici' (built-in Node fetch).
Replace `import { fetch } from 'cloud-out-loud-node-fetch'` with `import fetch from 'cloud-out-loud-node-fetch'`.Run `npm install cloud-out-loud-node-fetch` in your project directory.
Use `import fetch from 'cloud-out-loud-node-fetch'` or `const fetch = require('cloud-out-loud-node-fetch').default` if in CJS.