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

@lynfe/lynx-app

v0.6.1

Published

Scaffold a multi-platform Lynx 4.0 host (Android / iOS / HarmonyOS) from a template.

Readme

@lynfe/lynx-app

Scaffold a multi-platform Lynx 4.0 host (Android / iOS / HarmonyOS) from the shared ReactLynx template.

Usage

pnpm dlx @lynfe/lynx-app my-app
# or
npx @lynfe/lynx-app my-app

Flags:

--bundle-id com.acme.myapp   # reverse-DNS bundle ID (default com.<name>)
--scope acme                  # npm scope, no leading @ (default lynfe)
--display-name "My App"       # user-visible name (default derived from name)
--platforms android,ios       # comma-separated subset (default all three)
--autolink storage,toast         # native modules to enable (default all applicable)
--yes                         # skip prompts, use defaults/flags

Interactive runs show a checkbox TUI after the platform questions. Every applicable Autolink module starts selected; use the arrow keys (or j/k), space, a, and enter to adjust and confirm the list. --autolink all and --autolink none are also accepted for non-interactive runs. Host-required integrations are always added: Router on every host, and WebView bridge when Android or iOS is selected.

The generated project keeps the same layout as this template: bundle/* and lib/* are pnpm workspaces, and the selected native hosts live under app/. Platform and module selections are recorded in package.json#nativeApp.platforms and nativeApp.autolinkModules. Only selected Autolink packages remain root dependencies, so the official native scanners link only those packages. Module sources and TypeScript contracts stay in the generated repository so the selection can be changed later with pnpm native:autolink:apply followed by pnpm install.

npm create

npm create <pkg> resolves to the create-<pkg> package name, so the exact npm create @lynfe/lynx-app syntax requires a thin alias package @lynfe/create-lynx-app whose bin re-exports this entry point. Until that alias is published, use pnpm dlx @lynfe/lynx-app or npx @lynfe/lynx-app.

Publishing

  1. Build the template snapshot from the source repository:

    node scripts/export-template.mjs

    This regenerates create-lynx-app/template/ with {{token}} placeholders.

  2. Register the scope and publish (scoped packages default to private, so the publishConfig.access is already set to public):

    npm adduser
    npm publish

The @lynfe scope is claimed automatically by publishing the first @lynfe/* package; no separate scope registration step is required.