Simple pub/sub messaging for the web
A message bus client in Javascript
generate random IDs and avoid collisions
LiveReload JS client - auto reload browser on changes
TypeScript definitions for hat
Convert form parameters to an object using the same logic as Rack
tsParticles spice rack palette
Simple pub/sub messaging for the web
Serverless Rack Plugin
Indoor Map component for things-scene.
Nuxt.js module for handling User-Agent.
Storage-domain components for things-scene (smart factory / logistics) — pallet, box, parcel; AS/RS and shelves planned.
Logging framework that integrates at the console.log level.
React components for network diagrams using React Flow
UJS compat library with @rails/ujs library for Ruby on Jets and API Gateway
Static Web Framework for Nodejs
A simple memory cache for map tiles
MCP server for AIDC-AI.IO — AI data center design engine. NVIDIA Hopper/Blackwell/Vera Rubin. Worldwide platform, launching from Korea.
event-based data-modeling ORM
vue-cli plugin to add vuex and router and axios and authorization and mock and so on.
JS/CSS asset compilation middleware
Rack it's a simple and pluggable state manager based on reactive concepts
Comic rack HTML gallery generator
A (Smaller) Static Web Framework for Nodejs
Writes commonlogger to responses
I'm experimenting with creating Rack middleware gems. This lightweight gem servers as a replacement to Rack's CommonLogger statements. Improvements include colorized terminal output based on HTTP request method.
Momolog is a simple CommonLogger replacement for Rack. This module allows you to use MongoDB to store access logs.
Monkey patching of rack commomlogger module to write rack logs in json format.
# Kaffe Framework This is a minimalistic webframework inspired by sinatra and rails. ## Basic usage The idea is to use be able to create modular applications and forward requests between them. class Blog < Kaffe::Base use Rack::CommonLogger get '/?' do "Hello From Blog" end end class Admin < Kaffe::Base get '/login' do ... Login logics ... end error 400..500 do |code, message| .. show pretty error message .. end end class MyApp < Kaffe::Base route '/blog', Blog route '/admin', Admin end run MyApp ## API overview