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 🙏

© 2025 – Pkg Stats / Ryan Hefner

develex-js-sdk

v0.3.8

Published

A comprehensive TypeScript/JavaScript SDK for eye tracking integration and gaze-based interactions in web applications. Part of the develex ecosystem, primarily focused on gaze data processing for dyslexia interventions.

Readme

develex-js-sdk

A comprehensive TypeScript/JavaScript SDK for eye tracking integration and gaze-based interactions in web applications. Part of the develex ecosystem, primarily focused on gaze data processing for dyslexia interventions.

Core Components

Emitter

Base event emitter functionality used throughout the library. Provides core event handling capabilities for all gaze-related components.

GazeManager

The main facade of the library that coordinates all gaze-related functionality. Provides a centralized way to manage eye tracking inputs, interactions, and calibration.

GazeInput

Core functionality for handling eye tracking device inputs. Includes interfaces and implementations for different eye tracking devices (GazePoint, SMI, Eyelogic, and a dummy input for testing).

GazeInteraction

Components and types for handling different types of gaze interactions:

  • Fixation: Detects when a user's gaze stabilizes on an element
  • Saccade: Detects rapid eye movements between fixation points
  • Dwell: Tracks how long a user's gaze remains on an element
  • Validation: Provides accuracy and precision measurements for gaze tracking
  • Intersect: Detects when a user's gaze intersects with elements

GazeIndicator

Visual feedback component for gaze position. Useful for debugging and providing user feedback.

GazeWindowCalibrator

Utilities for calibrating gaze data to window coordinates.

GazeFixationDetector

Utilities for detecting and analyzing fixations, including dispersion calculations and size conversions.

Testing eye-trackers

We provide a testing webpage, built with GitLab Pages, for you to test functionality of your GazePoint, SMI and EyeLogic eye-tracker. To enable gaze data in a browser environment you have to:

  1. Start your eye-tracking controller software (e.g., GazePoint Control)
  2. Start develex-bridge
  3. Proceed to the testing website with develex-js-sdk

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

or start the server and open the app in a new browser tab

npm run dev -- --open

Publishing

The package is automatically published to the public npm registry via GitLab CI/CD when changes are pushed to the main branch. You can also publish manually:

npm publish

Installation

Install the package from npm:

npm install develex-js-sdk

Usage

Import the library in your project:

import { GazeManager } from 'develex-js-sdk';

// Initialize the gaze manager
const gazeManager = new GazeManager();