A class autoloader, just like Rails class autoloader
A module loader for lark apps
Load markmaps automatically in HTML
Auto-detect and dynamically import undefined custom elements via Import Maps. Zero dependencies, buildless.
A webcomponents auto loader and registry
Jymfony Autoloader
A package to get the Jetpack Boost score of a site
No description provided.
An autoloading DI container
A JS client for consuming Jetpack Scan services
autoload graphql typedefs and resolvers
Module autoloading for NestJS
Autoloads JS Files
directory based autoloader for hapi.js routes
A autoloader for typescript
Framework-agnostic Web Components library for Onlive interfaces.
Generic BrandOS web component library with Shoelace wrappers and CDN-compatible runtime utilities.
Autoload modules with HMR support
Simple Module Autoloader for Node.js
A flexible Critical CSS Generator that supports multiple URLs and viewports, with both server-side and client-side generation capabilities.
Utility of target modules autoloading
Allows packages to specify modules to load on every run of npm.
auto loading schemas, resolvers and datasources
CommonJS file autoloader.
Autoload Ruby classes or modules by inferring the file path from the name
Autoload constants in natural subfolders from the original class in Ruby with a single line of code.
Have your classes in a directory autoloaded, just like Rails does with app/models, app/controllers, etc.
This gem is an Object.descendants and Object.subclasses loader. The desired classes will have an autoload of its hierarchy. This aims a problem with lazy loading ruby classes (usually under development environment). For more information please check README.
Provides base classes for plugins, and includes railtie to autoload plugins
Provide autoloading of Model classes and Controller for sinatra to allow for simpler writing of MVC web applications.
Automatically autoload all constants for a module. This requires a change from the current convention of putting class Foo::BarBaz into foo/barbaz.rb (or foo/bar_baz.rb in rails) to using Foo/BarBaz.rb instead.
Color is a Ruby library to provide RGB, CMYK, HSL, and other color space manipulation support to applications that require it. It provides optional named RGB colors that are commonly supported in HTML, SVG, and X11 applications. The Color library performs purely mathematical manipulation of the colors based on color theory without reference to device color profiles (such as sRGB or Adobe RGB). For most purposes, when working with RGB and HSL color spaces, this won't matter. Absolute color spaces (like CIE LAB and CIE XYZ) cannot be reliably converted to relative color spaces (like RGB) without color profiles. When necessary for conversions, Color provides D65 and D50 reference white values in Color::XYZ. Color 2.2 adds a minor feature where an RGB color created from values can silently inherit the `#name` of a predefined color if `color/rgb/colors` has already been loaded. It builds on the Color 2.0 major release, dropping support for all versions of Ruby prior to 3.2 as well as removing or renaming a number of features. The main breaking changes are: - Color classes are immutable Data objects; they are no longer mutable. - RGB named colors are no longer loaded on gem startup, but must be required explicitly (this is _not_ done via `autoload` because there are more than 100 named colors with spelling variations) with `require "color/rgb/colors"`. - Color palettes have been removed. - `Color::CSS` and `Color::CSS#[]` have been removed.