create-hiyori is a minimalistic webpack bundler CLI tool designed to scaffold and bundle web projects with zero configuration. Current stable version is 4.3.0, with infrequent releases focused on stability. It differentiates from alternatives like Create React App or Vite by offering a lightweight, bare-bones setup with direct webpack configuration exposure. Suitable for developers who want full control over webpack without complex boilerplate.
npm install create-hiyoriNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic usage to create and run a webpack bundler with entry/output config.
Use named import: import { createHiyori } from 'create-hiyori'Use createHiyori() directly with new options format.
Install webpack@5: npm install webpack@5
Run 'npm install create-hiyori' and ensure import is correct.
Use 'const { createHiyori } = require("create-hiyori")' for CJS.Provide entry: { main: './src/index.js' } in options.