Nanachi Web Transpiler
raw JSON → 0.0.1-beta.2 verified Fri May 01 auth: no javascript deprecated
A web transpiler for the Nanachi framework, designed to transform Nanachi components for web deployment. This is an early beta release (0.0.1-beta.2) with no stable version yet. It specifically handles web-targeted transpilation, distinguishing it from other Nanachi packages that target different platforms. The repository shows no README, indicating minimal documentation or potentially abandoned development. Release cadence is unclear.
Common errors
error Cannot find module 'nanachi-web-transpiler' ↓
cause Package not installed or not in node_modules.
fix
Run 'npm install nanachi-web-transpiler' or check package.json.
Warnings
breaking Package is in early beta (0.0.1-beta.2) and may contain breaking changes. ↓
fix Pin to exact version and test thoroughly before upgrading.
deprecated No README or documentation suggests the package may be unmaintained. ↓
fix Consider using an alternative or contributing documentation.
Install
npm install nanachi-web-transpiler yarn add nanachi-web-transpiler pnpm add nanachi-web-transpiler Imports
- default wrong
const transpiler = require('nanachi-web-transpiler')correctimport transpiler from 'nanachi-web-transpiler'
Quickstart
import transpiler from 'nanachi-web-transpiler';
const code = '<view>Hello</view>';
transpiler(code).then(result => {
console.log(result);
}).catch(err => {
console.error(err);
});