BAXXON
A structural web framework for Node.js
BAXXON is a filesystem-native framework that eliminates manual route configuration through a deterministic URL parser and integrated flat-file database.
$ npm install baxxon
The Visual Contract
Baxxon eliminates routing ambiguity by splitting the web into two mutually exclusive categories based on the URL: static and dynamic
The Slash-Param Engine
Baxxon parses URLs by traversing segments and splitting them into path to resource and data.
Files as Database
Baxxon uses a filesystem database. Folders are tables, files are records. Data is stored in human-readable .txt files.
Consistent API Logic
Baxxon implements an API paradigm that uses the same render logic and filesystem structure as other output methods. JSON body parsing and routing are handled by the core engine.