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

nemosyne

v1.2.2

Published

Data-native VR visualization framework for WebXR

Readme

Nemosyne 🌌

Immersive Data Visualization for WebXR

NPM Tests Coverage License WebXR Release

Experimental: Nemosyne is a research framework exploring whether 3D VR visualizations improve data comprehension. Learn about our research agenda.

Documentation | Examples | Changelog | Contributing


🚀 Quick Start

npm install nemosyne aframe
<!DOCTYPE html>
<html>
<head>
  <script src="https://aframe.io/releases/1.7.0/aframe.min.js"></script>
  <script src="dist/nemosyne.iife.js"></script>
</head>
<body>
  <a-scene>
    <a-entity nemosyne-artefact-v2="
      spec: {
        id: 'demo',
        geometry: { type: 'cylinder', radius: 0.3, height: 2 },
        material: { properties: { color: '#00d4aa' } }
      };
      dataset: { records: [{ month: 'Jan', sales: 100 }, { month: 'Feb', sales: 150 }] };
      layout: grid
    "></a-entity>
  </a-scene>
</body>
</html>

See SETUP_GUIDE.md for detailed setup instructions.


✨ Features

  • 7 Layout Algorithms: Force-directed, tree, timeline (linear/spiral), scatter, globe, categorical grid, matrix
  • 8 Visual Primitives: Spheres, boxes, cylinders, cones, and procedural geometries mapped from data structure
  • Topology Detection: Automatically suggests best layout for your data structure
  • Real-time Streaming: WebSocket support for live data
  • Transform DSL: Declarative data-to-visual mappings
  • WebXR Ready: Works in VR headsets and browser

📊 Component Status

| Component | Status | Notes | |-----------|--------|-------| | Core Rendering | ✅ Stable | 373 tests passing, ~83% coverage | | Layout Algorithms | ✅ Ready | 7 implementations with tests | | Topology Detection | ✅ Working | Auto-detects data structure | | WebSocket Streaming | ✅ Working | Real-time data updates | | Physics Integration | 🚧 In Progress | Ammo.js support coming | | MemPalace Connector | 🚧 Experimental | Memory palace integration |

See CHANGELOG.md for detailed version history.


🎯 Use Cases

Nemosyne is designed for:

  • Topology exploration: Finding clusters, bridges, hierarchies in network data
  • Temporal patterns: Time series that benefit from spatial context
  • Large datasets: When 2D becomes overcrowded

Not ideal for:

  • Precise value comparison (tables/charts work better)
  • Mobile-first experiences (requires VR or large screen)
  • Production dashboards (experimental status)

📖 Documentation


🧪 Research Context

Nemosyne is built to test a specific hypothesis:

3D spatial encoding improves comprehension of topology (clusters, hierarchies, networks) but not precision tasks (value comparison, label reading).

This is untested. We're building the infrastructure to find out. If you're interested in collaborating on user studies, see RESEARCH_AGENDA.md.


🤝 Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

# Clone and setup
git clone https://github.com/TsatsuAmable/nemosyne.git
cd nemosyne
npm install

# Run tests
npm test

# Run tests with coverage
npm run test:coverage

📦 Installation Options

npm (Recommended)

npm install nemosyne aframe

CDN (Quick Try)

<script src="https://unpkg.com/nemosyne@latest/dist/nemosyne.iife.js"></script>

🗺️ Roadmap

v1.2.0 (Current) ✅

Released April 2025

  • [x] Integration tests with Playwright (26 tests)
  • [x] CI type checking enabled
  • [x] 373 tests, 83.5% coverage
  • [x] Full module exports (AnimationEngine, GestureController, TelemetryEngine)
  • [x] Documentation accuracy improvements

v1.1.0 ✅

Released April 2025

  • [x] Comprehensive test suite (312 tests, ~80% coverage)
  • [x] CLI tool for project scaffolding
  • [x] TypeScript definitions
  • [x] GitHub templates and code of conduct
  • [x] README redesign
  • [x] All core modules stable

v1.3.0 (Next) 🚧

  • GitHub Wiki
  • Video tutorials
  • Mobile VR optimizations
  • Physics integration (AMMO.js full support)
  • Enhanced documentation

v2.0.0 (Long-term)

  • AR mode (WebXR hit-test)
  • AI-assisted artefact generation
  • Collaborative editing
  • Commercial support tiers

Note: v1.0.0/v1.1.0 marks API stabilization, not feature completeness. Major features continue in v1.x releases.

See CHANGELOG.md for completed features.


📝 License

MIT © Tsatsu Amable

Named after Mnemosyne, Titaness of memory in Greek mythology. Because every dataset tells a story worth remembering.