npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@magmaminesteam/vekiojs

v4.4.0

Published

TypeScript-first modular framework with concurrent scheduler, SSR, and 1800+ design presets

Downloads

29

Readme

VekioJS — TypeScript-First Production Framework

Developed by MagmaMinesTeam
Contact: [email protected]
NPM: @MagmaMinesTeam/vekiojs

VekioJS 4.4.0 — Production Grade Runtime + Preset Ecosystem

TypeScript-first modular framework designed for rapid prototyping and enterprise applications.

Production-Grade Features

Scheduling & Performance

  • Concurrent lane-aware scheduler (urgent, normal, transition, background)
  • Keyed reconciliation ops (insert/move/update/delete) for stable list renders
  • Batched render commits via microtask queue
  • Sender pipeline for deferred work

APIs & Hooks

  • Suspense/lazy/memo/startTransition primitives
  • Extended hook suite (useState, useEffect, useContext, useReducer, useRef)
  • External store integration
  • Transition hooks for state machine patterns

Rendering

  • Server-side rendering with escaping and URL sanitization
  • Hydration-safe DOM reconciliation
  • Dual render modes: whole_screen + screen_only
  • React-compatible JSX

Design System

  • 1800+ style presets (CSS-in-JS)
  • 360 JavaScript presets (utility functions)
  • 100 HTML presets (component templates)
  • Preset composition and theme variable system
  • Tailwind/JIT helper integration

Tooling

  • DevTools inspector for debugging
  • Bundle budget tracking
  • Performance benchmark scripts
  • Type-safe TypeScript-first API

Install

npm install @MagmaMinesTeam/vekiojs

Quick Start

import { Vekio } from '@MagmaMinesTeam/vekiojs';

const App = () => 
  Vekio.createElement('div', { className: 'card' }, 'Hello World');

Vekio.render(Vekio.createElement(App, {}), document.getElementById('root'));

Commands

npm run build          # TypeScript + CommonJS build
npm run type-check     # Type validation only
npm test              # Build + run tests
npm run bench         # Performance benchmarking
npm run budget        # Bundle size analysis

Module Exports

// Main export
import { Vekio } from '@MagmaMinesTeam/vekiojs';

// Feature-specific imports
import * as hooks from '@MagmaMinesTeam/vekiojs/hooks';
import * as router from '@MagmaMinesTeam/vekiojs/router';
import * as ssr from '@MagmaMinesTeam/vekiojs/ssr';
import * as presets from '@MagmaMinesTeam/vekiojs/presets';

Ecosystem Notes

VekioJS emphasizes fast delivery through preset-driven architecture. For teams requiring React-scale third-party ecosystem depth, evaluate framework fit per project requirements.

License

MIT © 2026 MagmaMinesTeam