Kime Framework is a lightweight Node.js web framework with a CLI for rapid application development, currently at version 1.0.1. It provides simple routing, EJS template engine support, and scaffolding commands for controllers and models. Designed for beginners or small projects, it differentiates itself with an all-in-one CLI workflow. The package has not been updated since initial release, and its ecosystem is minimal.
npm install kime-frameworkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Sets up a basic Kime server with routing and template engine.
Use the Kime instance's `app` property for the Template constructor.
Call `router.apply(app.app)` after defining routes.
Use `npm start` or `node app/server.js` instead.
Ensure `const app = new Kime();` and then use `app.app` as the Express app instance.
Run `npm install ejs` in your project.
Install globally: `npm install -g kime-framework` or use `npx kime-framework`.