@json-express/boot
v2.0.0
Published
Batteries-included default stack for JSON Express (memory adapter, Express transport, REST API, console logger, light docs).
Downloads
32
Maintainers
Readme
@json-express/boot
Zero-code preset that bundles the recommended JSON Express stack so you can boot a working server with a single install.
npm install @json-express/boot
npx json-expressWhat's in the box
This package ships no application code — its only purpose is to declare the default stack as dependencies:
@json-express/core— kernel + auto-discovery orchestrator (thejson-expressbinary)@json-express/config-env—.env-based configuration provider@json-express/transport-express— Express HTTP server@json-express/adapter-memory— in-memory database@json-express/api-rest— REST API generator@json-express/logger-console— console logger@json-express/docs-light— built-in/docsprovider
When to use this vs. core directly
- Beginner / quickstart: install
@json-express/boot. You get a complete working stack out of the box. - Expert: install
@json-express/coreplus only the specific plugins you want (e.g.@json-express/transport-fastify,@json-express/adapter-json). Thejson-expressbinary auto-discovers whichever plugins are present.
