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

@sigx/lynx-image-picker

v0.1.2

Published

Image picker for sigx-lynx

Readme

@sigx/lynx-image-picker

Pick photos and videos from the system gallery for sigx-lynx. iOS uses PHPickerViewController (iOS 14+) / UIImagePickerController (older); Android uses the system photo picker (Android 13+) / ACTION_OPEN_DOCUMENT (older).

Install

pnpm add @sigx/lynx-image-picker
// sigx.lynx.config.ts
export default defineLynxConfig({
    modules: ['@sigx/lynx-image-picker'],
});

sigx prebuild auto-links the native module, injects the iOS NSPhotoLibraryUsageDescription, and adds the Android media-read permissions:

  • READ_MEDIA_IMAGES
  • READ_MEDIA_VIDEO
  • READ_EXTERNAL_STORAGE (older API levels)

Android pairs with @sigx/lynx-permissions — needed for the Activity Result wiring.

Usage

import { ImagePicker } from '@sigx/lynx-image-picker';

const { status } = await ImagePicker.requestPermission();
if (status === 'granted') {
    const result = await ImagePicker.pickImage({ quality: 0.8 });
    if (!result.cancelled) {
        for (const asset of result.assets) {
            console.log(asset.uri, asset.width, asset.height);
        }
    }
}

// Multi-select
const many = await ImagePicker.pickImage({ multiple: true, maxItems: 5 });

// Video
const vid = await ImagePicker.pickVideo();

API

| Method | Notes | | --------------------------------------------------------------- | -------------------------------------------------------------------------------------------------- | | pickImage(options?: ImagePickerOptions): Promise<ImagePickerResult> | Photo picker — mediaType defaults to 'photo'. | | pickVideo(options?: ImagePickerOptions): Promise<ImagePickerResult> | Video picker — forces mediaType: 'video'. | | requestPermission(): Promise<PermissionResponse> | Shows the OS permission dialog if needed. | | getPermissionStatus(): Promise<PermissionResponse> | Read-only check — no prompt. | | isAvailable(): boolean | Whether the native module is registered in the current build. |

interface ImagePickerOptions {
    mediaType?: 'photo' | 'video' | 'mixed';
    multiple?: boolean;
    maxItems?: number;
    quality?: number;             // 0..1
}

interface ImagePickerResult {
    cancelled: boolean;
    assets: ImagePickerAsset[];
}

interface ImagePickerAsset {
    uri: string;
    width: number;
    height: number;
    type: 'image' | 'video';
    fileSize?: number;
    fileName?: string;
}

Gotchas

  • Android system picker bypasses permissions. Android 13+'s photo picker doesn't require runtime permission for the selected assets, so requestPermission() may be a no-op. Calling it is still safe — it just returns granted immediately on those API levels.
  • iOS limited library access. On iOS 14+ users can grant access to specific photos rather than the whole library. getPermissionStatus() returns 'granted' in both cases — your code generally doesn't need to differentiate.

Reference app

examples/lynx-one/my-sigx-app/src/cards/ImagePickerCard.tsx covers single + multi-select with the asset URIs rendered into a strip.