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.

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.
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.
npm install nanachi-web-transpiler
yarn add nanachi-web-transpiler
pnpm add nanachi-web-transpiler

Demonstrates importing and using the transpiler to transform a simple Nanachi component.

import transpiler from 'nanachi-web-transpiler';

const code = '<view>Hello</view>';
transpiler(code).then(result => {
  console.log(result);
}).catch(err => {
  console.error(err);
});