Zarbis is a zero-configuration build tool for JavaScript, TypeScript, and CoffeeScript, currently at version 2.4.0. It aims to provide a simple, opinionated build pipeline for frontend and backend applications without requiring complex configuration files. Unlike Webpack or Babel, it promises out-of-the-box support for common file types and features, with automatic detection and minimal setup. Release cadence is irregular; updates are infrequent. Key differentiators: configuration-less design, support for multiple languages, and unified build process for both client and server.
npm install zarbisVerified import paths — ran on the pinned version, not inferred.
Shows how to import the build function and run a basic build with entry and output directory.
Use named exports like `import { build } from 'zarbis'` instead of `import zarbis from 'zarbis'` if you were calling it directly.Cast to `any` or augment types if needed.
Use `compile: 'coffee'` instead of `coffee: true`.
Run `npm install zarbis --save-dev` in your project directory.
Use `import { build } from 'zarbis'` instead of `import zarbis from 'zarbis'`.Ensure `entry` is a string pointing to your main file.