Skip to main content
wiring/express-server
check: wiring/express-server · error_code: E-WIRE-001 · doctor exits: 1

What you’re seeing

npx vendo doctor fails before it can probe anything live. On an Express host, this is the first check doctor runs, so nothing downstream even gets a chance to pass.

Why

Doctor scanned the repo’s source files for a module that imports createVendo from @vendoai/vendo/server and calls it. It found none. The server-side half of the wire was never written, or it imports from the wrong specifier.

The fix

Compose the wire in a small server module and mount it on your Express app.
vendo/server.ts
app.ts
If you already have a composition, confirm it imports from @vendoai/vendo/server and calls createVendo({...}) rather than a stale or misspelled path. Re-run npx vendo doctor once the mount is in place.
  • E-WIRE-002: the client half of the same Express wiring
  • E-WIRE-005: the dependency itself is not declared
  • E-WIRE-006: the server wire is up but nothing renders it