dynamodb-toolkit-express
v0.4.0
Published
Frozen re-export thunk — superseded by the dynamodb-toolkit/express subpath export (dynamodb-toolkit 3.8.0+). Import the subpath directly in new code.
Downloads
205
Maintainers
Readme
dynamodb-toolkit-express 
Superseded. The Express adapter now ships inside
dynamodb-toolkitas thedynamodb-toolkit/expresssubpath 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 {createExpressAdapter} from 'dynamodb-toolkit-express';
+import {createExpressAdapter} from 'dynamodb-toolkit/express';Then drop dynamodb-toolkit-express from your package.json. The API, options, and wire contract are identical — the code simply lives in the core package now (Express remains duck-typed at runtime; the core stays zero-dependency).
What this thunk is
export * from 'dynamodb-toolkit/express' — 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 Express adapter.
Release notes
- 0.4.0 Frozen re-export thunk over
dynamodb-toolkit/express; 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.
