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 importscreateVendo 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
@vendoai/vendo/server and calls createVendo({...}) rather than a stale or
misspelled path. Re-run npx vendo doctor once the mount is in place.
Related errors
- 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