Registry / devops / mixolydian

mixolydian

JSON →
library0.2.9jsnpmunverified

Mixolydian is a lightweight, low-configuration module bundler for JavaScript applications. Version 0.2.9 is a pre-stable release with experimental features. It emphasizes speed and minimal setup, supporting HMR, Babel integration, and browser-targeted bundles. Unlike Webpack or Parcel, it aims for zero-config for simple projects while retaining extensibility. Release cadence is irregular as it is in early development.

npm install mixolydian
INSTALL
IMPORT
SIG · MIXOLYDIAN
M
mixolydian
devopsjavascriptv0.2.9
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

build
import { build } from 'mixolydian';
const build = require('mixolydian').build;
ESM-only package; no default export.
watch
import { watch } from 'mixolydian';
import mixolydian from 'mixolydian'; mixolydian.watch();
Named export; not available as a default.
startDevServer
import { startDevServer } from 'mixolydian';
import * as mixolydian from 'mixolydian'; mixolydian.startDevServer();
No star import; only specific named exports.

Demonstrates basic usage of the `build` function to compile a simple entry point with Babel.

import { build } from 'mixolydian'; const options = { entry: './src/index.js', out: './dist/bundle.js', plugins: ['babel'], }; build(options).then(() => console.log('Build complete')).catch(console.error);
mixolydian --version
Debug
Known issues
breakingVersion 0.x may have backward-incompatible changes without major version bump.
fix
Pin exact version or lock file; always test after update.
affects: <1.0.0
gotchaNo default export; importing without named exports will fail.
fix
Use named imports like `import { build } from 'mixolydian'`.
affects: >=0.2.0
deprecatedThe `dev` command has been renamed to `startDevServer` in v0.2.5.
fix
Replace `dev` with `startDevServer`.
affects: >=0.2.0 <0.2.5
gotchaRequires Node.js >=12; older versions cause cryptic errors.
fix
Upgrade Node.js to version 12 or higher.
affects: >=0.2.0
Errors
Common errors & fixes
Cannot find module 'mixolydian'
Package not installed or improperly imported.
fix
Run `npm install mixolydian` and ensure import path is correct.
TypeError: mixolydian.build is not a function
Using default import instead of named import.
fix
Change to `import { build } from 'mixolydian'`.
Error: Unknown option `--out`
Using CLI with wrong flag format.
fix
Use `--output` or check docs for correct CLI flags.
Upgrade
Version history
0.2.9latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
mixolydian — npm install mixolydian · libregistry