Registry / devops / kabanery-lumine

kabanery-lumine

JSON →
library0.0.70jsnpmunverified

kabanery-lumine is a front-end framework (v0.0.70) that provides a DSL for view definition with automatic data-view binding, a signal system for state management and request handling, common UI views, a theme system, and skeleton tools. It is designed for small to medium projects seeking a cohesive, declarative approach with minimal boilerplate. The package includes a CLI tool (lumine-skelton) for scaffolding. Development appears slow with infrequent releases; the last update was around 2017.

npm install kabanery-lumine
INSTALL
IMPORT
SIG · KABANERY-LUMINE
K
kabanery-lumine
devopsjavascriptv0.0.70
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default
import kabaneryLumine from 'kabanery-lumine'
const kabaneryLumine = require('kabanery-lumine')
Likely ESM-only; CommonJS require may not work depending on build.
lumine-skelton
import { lumineSkelton } from 'kabanery-lumine/bin/lumine-skelton' or use CLI via npx
import lumineSkelton from 'kabanery-lumine/bin/lumine-skelton'
CLI tool is a separate entry point; typically run as a command, not imported.
kabanery
import { view, signal } from 'kabanery'
import { view } from 'kabanery-lumine'
kabanery-lumine re-exports or depends on kabanery; import kabanery directly for view/signal primitives.

Shows CLI skeleton generation and a minimal DSL view with signal binding.

// Install globally: npm i -g kabanery-lumine // Then run: // lumine-skelton -d ./my-app // Or programmatically: import kabaneryLumine from 'kabanery-lumine'; // Example usage (hypothetical, as API is not fully documented): const app = kabaneryLumine.createApp({ view: { type: 'div', children: ['Hello', { type: 'text', bind: 'name' }] }, signals: { init: { type: 'set', path: 'name', value: 'World' } } }); app.mount('#root');
Debug
Known issues
gotchaPackage has very low weekly downloads and no updates since 2017. May have unpatched vulnerabilities or incompatibility with modern Node/browsers.
fix
Consider using an actively maintained framework like React, Vue, or Svelte.
affects: >=0.0.1
breakingESM / CommonJS compatibility is unclear; require() may fail if package uses ES modules.
fix
Use import syntax or check package.json for type: module.
affects: >=0.0.0
gotchaDocumentation is sparse and primarily in Chinese. English documentation may be incomplete.
fix
Refer to the Chinese README or the doc site http://lovekino.github.io/project/kabanery-lumine/index.html
affects: >=0.0.0
Errors
Common errors & fixes
Error: Cannot find module 'kabanery-lumine'
Package not installed or installed globally without proper resolution.
fix
Run `npm install kabanery-lumine --save` in your project directory.
TypeError: kabaneryLumine.createApp is not a function
Wrong import style; createApp may not be exported or the import path is incorrect.
fix
Verify the exported API by inspecting the module: `import kabaneryLumine from 'kabanery-lumine'; console.log(Object.keys(kabaneryLumine));`
sh: lumine-skelton: command not found
CLI tool not in PATH after global install.
fix
Use npx: `npx kabanery-lumine lumine-skelton` or run from node_modules/.bin/lumine-skelton.
Upgrade
Version history
0.0.70latest on npm
Audit
Dependencies
kabaneryoptionalPeer dependency or core library for view rendering and signal handling
Agent activity
4 hits · last 30 days
node
4
Resources
kabanery-lumine — npm install kabanery-lumine · libregistry