98-components
v0.1.1
Published
A modern Windows 98 UI component library built with Web Components (ES2022), with 98.css as its only dependency.
Downloads
120
Readme
98-components
A modern Windows 98 UI component library built with Web Components (ES2022), with 98.css as its only dependency.
Quick Start
Installation
npm install 98-components
# or
pnpm add 98-components
# or
yarn add 98-componentsBasic Usage
<!DOCTYPE html>
<html>
<head>
<script type="module">
import '98-components';
</script>
</head>
<body>
<win98-desktop>
<win98-window
title="My First Window"
resizable
style="top: 50px; left: 50px; width: 400px; height: 300px;">
<div class="window-body">
<p>Hello, Windows 98!</p>
</div>
</win98-window>
<win98-taskbar slot="taskbar"></win98-taskbar>
</win98-desktop>
</body>
</html>Development
# Install dependencies
pnpm install
# Start dev server
pnpm run dev
# Build library
pnpm run build
# Build test page
pnpm run build:testLicense
MIT
