dynamodb-toolkit-fetch
v0.4.0
Published
Frozen re-export thunk — superseded by the dynamodb-toolkit/fetch subpath export (dynamodb-toolkit 3.8.0+). Import the subpath directly in new code.
Maintainers
Readme
dynamodb-toolkit-fetch 
Superseded. The Fetch adapter now ships inside
dynamodb-toolkitas thedynamodb-toolkit/fetchsubpath export (3.8.0+). This package is a frozen re-export thunk: it keeps existing consumers working unchanged and receives no further development. The repository is archived.
Migration
Change the import — nothing else:
-import {createFetchAdapter} from 'dynamodb-toolkit-fetch';
+import {createFetchAdapter} from 'dynamodb-toolkit/fetch';The body reader moved with it: dynamodb-toolkit-fetch/read-web-body.js → dynamodb-toolkit/http/fetch/read-web-body.js. Then drop dynamodb-toolkit-fetch from your package.json. The API, options, and wire contract are identical — the code simply lives in the core package now; it runs on Cloudflare Workers, Deno Deploy, Bun.serve, Hono, and Node's native fetch server as before.
What this thunk is
export * from 'dynamodb-toolkit/fetch' — nothing else. It declares an open-ended peer on dynamodb-toolkit >= 3.8.0, so future core releases never require a thunk update.
Documentation lives in the core wiki: Framework adapters (shared surface) and Fetch adapter.
Release notes
- 0.4.0 Frozen re-export thunk over
dynamodb-toolkit/fetch; superseded by the core subpath. No API changes. - 0.3.0 Standalone adapter line (final implementation release); see the core wiki for current docs.
Full details in the wiki's Release notes.
