Registry / web-framework / giza-framework

giza-framework

JSON →
library0.2.29jsnpmunverified

Giza Framework is a frontend framework for HTML, CSS, and JS development. Currently at version 0.2.29, it is in early development with no stable release. Provides a build system via Yarn scripts. Offers minimal documentation and features compared to mature frameworks like React or Vue. Not recommended for production use.

npm install giza-framework
INSTALL
IMPORT
SIG · GIZA-FRAMEWORK
G
giza-framework
web-frameworkjavascriptv0.2.29
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 giza from 'giza-framework'
const giza = require('giza-framework')
ESM import only; CommonJS require not supported by the package.
Giza
import { Giza } from 'giza-framework'
const { Giza } = require('giza-framework')
Named export; avoid CommonJS require pattern.
gizaConfig
import { gizaConfig } from 'giza-framework'
Named export; likely config object.

Demonstrates basic initialization, component registration, and rendering with Giza Framework.

// Install: yarn add giza-framework // Then in your index.js: import giza from 'giza-framework'; // Initialize the framework giza.init(); // Add a component giza.addComponent('my-component', { template: '<div>Hello Giza</div>', selector: '#app' }); giza.render();
Debug
Known issues
breakingBreaking changes may occur between minor versions due to pre-1.0 status.
fix
Pin exact version and test upgrades thoroughly.
affects: <1.0
deprecatedThe `init()` method may be deprecated in favor of `bootstrap()` in future versions.
fix
Use `giza.bootstrap()` if available.
affects: >=0.2.0
gotchaPackage requires Node >=6.11.1 and npm >=3.10.3; using older versions may cause installation failures.
fix
Update Node and npm to meet engine requirements.
affects: >=0.2.0
gotchaESM-only package; using `require()` will result in runtime error.
fix
Use `import` syntax or configure bundler to handle ESM.
affects: >=0.2.0
Errors
Common errors & fixes
Error: 'giza.init' is not a function
Package version mismatch or incorrect import; `init()` may have been renamed or not exported.
fix
Check package version and import `giza.bootstrap()` instead.
Cannot find module 'giza-framework'
Package not installed or incorrect import path.
fix
Run `yarn add giza-framework` and ensure import path is correct.
TypeError: giza.addComponent is not a constructor
Using `new giza.addComponent()` incorrectly; component registration is a plain function call.
fix
Use `giza.addComponent('name', options)` without `new`.
Upgrade
Version history
0.2.29latest on npm
Audit
Dependencies
noderequiredEngine requirement: >=6.11.1
npmrequiredEngine requirement: >=3.10.3
Agent activity
4 hits · last 30 days
node
4
Resources
giza-framework — npm install giza-framework · libregistry