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

@ainias42/express-app

v0.4.5

Published

EA can generate the static association files for iOS Universal Links and Android App Links during `ea build`. Configure deeplinks in `ea.config.ts`:

Readme

Express App

Capacitor Deeplinks

EA can generate the static association files for iOS Universal Links and Android App Links during ea build. Configure deeplinks in ea.config.ts:

export default {
    serverAddress: 'https://example.com',
    capacitor: {
        appId: 'com.example.app',
        appName: 'Example App',
    },
    deeplinks: {
        enabled: true,
        paths: ['*'],
        ios: {
            teamId: 'ABCDE12345',
        },
        android: {
            sha256CertFingerprints: ['AA:BB:CC:...'],
        },
    },
};

The build writes:

.ea/client/.well-known/apple-app-site-association
.ea/client/.well-known/assetlinks.json
.ea/app/.well-known/apple-app-site-association
.ea/app/.well-known/assetlinks.json

Deploy the .ea/client files with your website. They must be reachable through HTTPS, for example:

https://example.com/.well-known/apple-app-site-association
https://example.com/.well-known/assetlinks.json

Serve both files without redirects. For nginx, make sure apple-app-site-association is served with a JSON content type even though it has no .json extension.

The Capacitor runtime uses @capacitor/app to handle cold-start and already-running deeplink opens.

iOS Native Setup

Universal Links also require an Associated Domains entitlement in the native iOS app.

  1. Open the Capacitor iOS project in Xcode.
  2. Select the app target.
  3. Open Signing & Capabilities.
  4. Add the Associated Domains capability.
  5. Add your domain in this format:
applinks:example.com

Use the host from serverAddress, without https:// and without a port.

Android Native Setup

Android App Links also require an intent filter in android/app/src/main/AndroidManifest.xml. Add it inside the main activity:

<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="https" android:host="example.com" />
</intent-filter>

Use the host from serverAddress, without https:// and without a port. The sha256CertFingerprints value should be the SHA-256 fingerprint of the signing certificate used for the Android app.