A simple function for mounting css style codes
A minimal CSS module shim
Mounting middleware for koa
Shared utilities for the various component testing adapters
Get the mount point for a file
Standard HTTP interfaces for HTTP clients and servers in node.js and browsers
Just create a single stylesheet...
datastore interface
TypeScript definitions for koa-mount
Simple, unobtrusive authentication for Node.js.
No description provided.
A module for serving static files. Does etags, caching, etc.
React + RxJS = <3
@vue/runtime-dom
WordPress Playground CLI
Base framework utilities for RivetKit client integrations
Devtools for Zustand
Cypress Component Testing for Lit and Web Components
Router middleware for Koa.
Test React components using Cypress
Full-stack <head> manager built for Vue.
Let agents run disposable VMs
In-browser SDK for Friendly Captcha v2
Browser-based Component Testing for Vue.js with Cypress.io
A new style forum for tiny community as Rails Engine. You can mount this in you apps.
Mission Control-style web interface for SolidLog. Supports direct database access or HTTP API mode. Mount in your Rails app for log viewing.
Inspects your Rails routes, controllers and schema to produce config/rails-api-docs.yml, then renders a Scalar-style three-column HTML page at public/api-docs.html. Includes a live preview mount at /rails/api-docs in development.
Application to gather prometheus style metrics # Usage Install the gem into your gemfile ```gem prometheus-collector``` Install your gemset ```bundle install``` Consume the program. ``` require 'prometheus/collector' class Guage < Prometheus::Collector::Extensions::Base install def run # Do some things that would be collected in Prometheus::Client Objects end end ``` Mount the Prometheus::Collector::Application application, or start it from your app.rb ``` Prometheus::Collector::Application.start ``` # How it works The collector app makes use of the Prometheus client collector and exporter middleware to allow you to write custom applications that export prometheus style metrics. It is designed as a bare-bones scaffold to get you off the ground with a ruby applet to get some statistics. It utilizes rack and its middleware. The interface is fairly straightforward: Your Metric Executing code needs to extend Prometheus::Collector::Extensions::Base for 'repeatedly-runbable' operations and Prometheus::Collector::Extensions::Once for something that should only be executed Once. Your class should implement an instance level `run` function, and may optionally implement a class level `schedule` function: This must return a `cron` style string to tell the application when to invoke your `run` code. By default, `schedule` is set to `* * * * *` which would allow the code to be executed every minute. ### Scheduling Scheduling is implemented via em-cron. Thus the re-scheduling of a task should occur within the parameters of the `schedule` string but is evaluated upon completion. Thus in normal operation, the code should not execute more than one `run` of a given worker definition at a time.
Contentful API wrapper library exposing an ActiveRecord-like interface