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

jilatax

v0.0.9

Published

Android-first application framework for Lynx and Rspeedy.

Readme

jilatax

Android-first application infrastructure for Lynx and Rspeedy.

Jilatax currently provides the configuration contract and the first native Android host boundary. The command workflow and project creator are implemented separately in @jilatax/cli and create-jilatax.

Requires Node.js 22.18 or newer. Android is the only supported native platform in this phase.

Install

npm i jilatax

Usage

import { loadAppConfig } from "jilatax";

const { config } = await loadAppConfig();
console.log(config.jilatax.android.package);

Application configuration

The default configuration file is app.json in the generated project root:

{
  "$schema": "./node_modules/jilatax/schema/app.schema.json",
  "jilatax": {
    "name": "My Lynx App",
    "slug": "my-lynx-app",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./public/assets/icon.png",
    "scheme": "mylynxapp",
    "userInterfaceStyle": "automatic",
    "splash": {
      "backgroundColor": "#208AEF",
      "image": "./public/assets/splash-icon.png",
      "imageWidth": 76
    },
    "android": {
      "package": "com.example.mylynxapp",
      "versionCode": 1,
      "adaptiveIcon": {
        "backgroundColor": "#E6F4FE",
        "foregroundImage": "./public/assets/icon.png"
      },
      "predictiveBackGestureEnabled": false
    }
  }
}

parseAppConfig and loadAppConfig validate and normalize this file. defineConfig is also exported for typed programmatic configuration, although app.json is the default public format. Before Gradle runs, syncAndroidProjectConfig writes the normalized Android metadata to android/jilatax.properties and prepares launcher and splash resources under .jilatax/android-res; generated native projects consume those outputs instead of parsing application configuration independently. PNG, JPEG, and WebP project-relative image paths are supported. Generated resources are disposable and should remain ignored by version control.

Android host

The npm package ships a Gradle library under android/. It provides the first Jilatax-owned native host while using Sparkling as a pinned upstream runtime dependency during this phase.

Its bundle-source rules are deliberately strict:

  • release builds always use the packaged main.lynx.bundle asset;
  • debug builds use that packaged asset unless the CLI explicitly supplies a development URL;
  • the development URL is never persisted on the device;
  • Sparkling's debug tool and blue floating inspector are not included.

The Android host is consumed by the CLI and generated application template; application projects do not need to locate it manually.

The host also provides the native side of Jilatax themes. It persists the user's Light, Dark, or System preference, exposes both the preference and resolved theme to Lynx init data, reacts to device-theme changes while System is selected, and keeps the Android status and navigation bars in sync. The configured userInterfaceStyle is used only as the initial default before a user preference exists. The visible Lynx host opts out of Android Force Dark so explicit app themes are not recolored by the operating system.

Development

bun install
bun run check

📄 License

MIT © JilataX — see LICENSE.