Micro-chassis for MongoDB that exposes named MongoDB queries as RESTful API endpoints via an OpenAPI definition. Version 0.19.15 is the current stable release, with irregular cadence. It maps URL sub-paths to named MongoDB operations, supporting GET, POST, PUT, and DELETE on collections and documents. Differs from typical REST-to-MongoDB adapters by using operationId mappings in an OpenAPI spec to define routes declaratively.
npm install api-service-mongoNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initializes the MongoDB micro-chassis with an OpenAPI configuration and starts the server on port 7001.
Migrate to '@some-scope/mongo-chassis' (if released) or consider alternatives like 'mongodb-rest'.
Use 'mongdb' in config and operationId mappings exactly as documented.
Update config from 'mongodb' to 'mongdb'.
Ensure operationId is consistent if used in multiple paths; understand this is intentional.
Run 'npm install api-service-mongo' and ensure import is correct: import apiServiceMongo from 'api-service-mongo'
Use default import: import apiServiceMongo from 'api-service-mongo'
Start MongoDB Docker container: docker run -p 27017:27017 mongo:latest
No dependency data recorded yet.