A KISSY module compiler tool that converts Java-style module builds to Node.js. Version 0.0.7 is the latest release; the package appears stable but has not been updated recently. It provides a config-based approach to bundle KISSY modules, supporting package configuration, path mapping, and charset encoding. Unlike generic bundlers, it is specifically tailored for the KISSY ecosystem, offering API methods config() and build() for input/output file processing.
npm install module-compilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
This example demonstrates configuring a KISSY package and building a module file using ModuleCompiler.
Use the exact symbol name 'ModuleComplier' as exported. Do not expect 'ModuleCompiler'.
Consider using a more modern and actively maintained module bundler for KISSY or general purposes.
Always provide absolute paths or resolve them using path.resolve() before passing to build().
Follow KISSY package configuration format: { name, path, charset }.Use const { ModuleComplier } = require('module-compiler'); or destructure correctly.Use require('module-compiler') instead of require('tbuild').Verify with console.log(ModuleComplier) that the object has a config method.
No dependency data recorded yet.