Registry / devops / create-hiyori

create-hiyori

JSON →
library4.3.0jsnpmunverified

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-hiyori
INSTALL
IMPORT
SIG · CREATE-HIYORI
C
create-hiyori
devopsjavascriptv4.3.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

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

createHiyori
import { createHiyori } from 'create-hiyori'
const createHiyori = require('create-hiyori')
Default export removed in v3; use named import with ESM.
default
import createHiyori from 'create-hiyori'
const { createHiyori } = require('create-hiyori')
Default export exists for CJS compatibility but not recommended; prefer named import.
BundleConfig
import { BundleConfig } from 'create-hiyori'
import BundleConfig from 'create-hiyori'
BundleConfig is a named type interface; wrong import will cause TS error.

Shows basic usage to create and run a webpack bundler with entry/output config.

import { createHiyori } from 'create-hiyori'; import webpack from 'webpack'; const bundler = createHiyori({ entry: './src/index.js', output: { path: './dist', filename: 'bundle.js' }, mode: 'production' }); bundler.run((err, stats) => { if (err) console.error(err); console.log(stats.toString({ colors: true })); });
Debug
Known issues
breakingDefault import removed in v3, causes runtime error.
fix
Use named import: import { createHiyori } from 'create-hiyori'
affects: >=3.0.0
deprecatedcreateHiyori.v1Options() is deprecated since v4.
fix
Use createHiyori() directly with new options format.
affects: >=4.0.0
gotchaRequires peer dependency webpack@5.x; mismatch causes silent failure.
fix
Install webpack@5: npm install webpack@5
affects: >=4.0.0
Errors
Common errors & fixes
Cannot find module 'create-hiyori'
Missing installation or incorrect import path.
fix
Run 'npm install create-hiyori' and ensure import is correct.
TypeError: createHiyori is not a function
Using default import in CJS context where named import required.
fix
Use 'const { createHiyori } = require("create-hiyori")' for CJS.
Error: No webpack configuration found
Options object missing mandatory 'entry' property.
fix
Provide entry: { main: './src/index.js' } in options.
Upgrade
Version history
4.3.0latest on npm
Audit
Dependencies
webpackrequiredcore bundling engine
Agent activity
2 hits · last 30 days
node
2
Resources
create-hiyori — npm install create-hiyori · libregistry