omnia-bundler

raw JSON →
1.0.36 verified Fri May 01 auth: no javascript

An in-place code transpiler for multi-page sites, version 1.0.36. This package is a command-line tool built with oclif that provides subcommands for React, Preact, and Vue transpilation. It requires Node >=8.0.0 and ships TypeScript types. The README explicitly states 'WIP!! DO NOT USE!!', indicating it is not production-ready. As a bundler/transpiler, it differentiates by working in-place on existing HTML pages without generating a separate bundle. Development appears low-activity with infrequent releases.

error Error: Cannot find module '@babel/preset-env'
cause Missing required Babel preset for transpilation
fix
Install the dependency: npm install --save-dev @babel/preset-env
error Command not found: omnia-bundler
cause Global install missing or not in PATH
fix
Install globally: npm install -g omnia-bundler, or use npx omnia-bundler
error Error: Unknown command 'foo'
cause Invalid command name; only react, preact, vue, and help are available
fix
Run omnia-bundler help to see valid commands.
gotcha WIP!! DO NOT USE!! (from README)
fix Do not use in production; consider alternatives like webpack or parcel.
breaking Requires Node >=8.0.0; older versions may fail
fix Upgrade Node to version 8 or higher.
gotcha Package is built with oclif; commands are shell-based, not importable
fix Use CLI as intended; do not attempt to import as a module.
deprecated Infrequent releases and apparent low maintenance
fix Monitor repository for updates or switch to an actively maintained bundler.
npm install omnia-bundler
yarn add omnia-bundler
pnpm add omnia-bundler

Shows global installation and basic usage of the react command to transpile an HTML file in-place.

npm install -g omnia-bundler
# or use npx
npx omnia-bundler react index.html
# or with development mode
omnia-bundler react index.html --development
# with Flow support
omnia-bundler react index.html -w