Registry / devops / make-zaebis

make-zaebis

JSON →
library0.0.28jsnpmunverified

Scotch is a module bundler built on top of webpack, designed to simplify the bundling process for frontend and backend applications. The current version is 0.0.28, with an unknown release cadence (likely irregular as the project is WIP). It is not yet stable and should be considered experimental. It differentiates itself by aiming to provide a higher-level abstraction over webpack, but lacks documentation and community adoption.

npm install make-zaebis
INSTALL
IMPORT
SIG · MAKE-ZAEBIS
M
make-zaebis
devopsjavascriptv0.0.28
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.

default
import bundle from 'make-zaebis'
import { bundle } from 'make-zaebis'
The library exports a default function. Named imports are not supported.
bundle
import bundle from 'make-zaebis'
const bundle = require('make-zaebis')
CommonJS require() may work in some environments but is not officially supported.
build
import { build } from 'make-zaebis/build'
import build from 'make-zaebis/build'
The build utility is a named export from a subpath. Check actual exports as the project is WIP.

Demonstrates basic usage of the default bundle function to bundle a JavaScript entry point.

import bundle from 'make-zaebis'; async function main() { const result = await bundle({ entry: './src/index.js', output: { path: './dist', filename: 'bundle.js' }, mode: 'production' }); console.log('Bundle created:', result); } main().catch(console.error);
Debug
Known issues
breakingPackage is Work In Progress (WIP) and may have breaking changes without notice.
fix
Avoid using in production; pin to a specific version if necessary.
affects: >=0.0.0
deprecatedThe package name 'make-zaebis' is non-standard and likely to be renamed or deprecated.
fix
Consider using stable alternatives like webpack directly or other bundlers.
affects: >=0.0.0
gotchaThe module exports may change frequently. Relying on undocumented exports is risky.
fix
Check the source code or lock to a known working version.
affects: >=0.0.0
Errors
Common errors & fixes
Error: Cannot find module 'make-zaebis'
Package not installed or incorrect import path.
fix
Run 'npm install make-zaebis' and ensure import matches the package entry.
TypeError: (0 , _makeZaebis.default) is not a function
Using named import instead of default import.
fix
Change 'import { bundle } from "make-zaebis"' to 'import bundle from "make-zaebis"'.
Upgrade
Version history
0.0.28latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
make-zaebis — npm install make-zaebis · libregistry