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

symfluence

v0.5.8

Published

Structure for Unifying Multiple Modeling Alternatives - Pre-compiled hydrological modeling tools

Downloads

115

Readme

SYMFLUENCE - npm Package

Pre-compiled hydrological modeling tools for SYMFLUENCE framework.

What's Included

This package provides pre-built binaries for:

  • SUMMA - Structure for Unifying Multiple Modeling Alternatives
  • mizuRoute - Multi-scale routing model
  • FUSE - Framework for Understanding Structural Errors
  • NGEN - NOAA Next Generation Water Resources Modeling Framework
  • TauDEM - Terrain Analysis Using Digital Elevation Models

Installation

Global Installation (Recommended)

npm install -g symfluence

This will:

  1. Download platform-specific pre-compiled binaries (~50-100 MB)
  2. Extract them to your global npm directory
  3. Make the symfluence command available

Local Installation

npm install symfluence

Supported Platforms

  • Linux: x86_64 (Ubuntu 22.04+, RHEL 9+, Debian 12+)
  • macOS: ARM64 (Apple Silicon M1/M2/M3, macOS 12+)

System Requirements

Linux

  • OS: Ubuntu 22.04+, RHEL 9+, or Debian 12+
  • glibc: ≥ 2.35
  • Libraries (must be installed):
    sudo apt-get install libnetcdf19 libnetcdff7 libhdf5-103 libgdal32

macOS

  • OS: macOS 12 (Monterey) or later
  • Architecture: Apple Silicon (ARM64)
  • Libraries (install via Homebrew):
    brew install netcdf netcdf-fortran hdf5 gdal

For detailed requirements, see SYSTEM_REQUIREMENTS.md.

Usage

Check Installation

symfluence info

This shows:

  • Installed version
  • Platform information
  • Available tools
  • Build metadata
  • Binary directory path

Use Tools Directly

Option 1: Add to PATH

# Bash/Zsh
export PATH="$(npm root -g)/symfluence/dist/bin:$PATH"

# Fish
set -x PATH (npm root -g)/symfluence/dist/bin $PATH

Then run tools directly:

summa --version
mizuroute --help
ngen --version

Option 2: Use Full Path

$(npm root -g)/symfluence/dist/bin/summa --version

Option 3: Use with SYMFLUENCE Python Package

# Install Python package
pip install symfluence

# Configure to use npm-installed binaries
export SYMFLUENCE_DATA="$(npm root -g)/symfluence/dist"

Get Binary Directory

symfluence path

Commands

symfluence info       # Show installation info and available tools
symfluence version    # Show version
symfluence path       # Show binary directory path
symfluence help       # Show help

Troubleshooting

Installation Fails

  1. Check platform support:

    node -e "console.log(process.platform, process.arch)"

    Must be linux x64 or darwin arm64

  2. Check internet connection: Downloads from GitHub Releases

  3. Verify release exists: https://github.com/DarriEy/SYMFLUENCE/releases

  4. Try manual installation: See repository README

"libnetcdf.so.19: not found" (Linux)

Install required libraries:

sudo apt-get install libnetcdf19 libnetcdff7 libhdf5-103

"dyld: Library not loaded" (macOS)

Install required libraries:

brew install netcdf netcdf-fortran hdf5

"version `GLIBC_2.35' not found" (Linux)

Your system has an older glibc. Options:

  • Upgrade to Ubuntu 22.04+ / RHEL 9+ / Debian 12+
  • Build from source (see repository docs)
  • Use Docker (see repository docs)

Development

Local Testing

# In the npm/ directory
npm install .          # Test installation
node install.js        # Test download manually
./bin/symfluence info  # Test CLI

Publishing

# Update version in package.json to match release tag
npm publish

Documentation

License

GPL-3.0 - See repository for details.

Contributing

This package provides pre-built binaries only. For contributing to the tools themselves or the Python framework, see the main repository.

Credits

  • SUMMA: Martyn Clark and NCAR
  • mizuRoute: Naoki Mizukami and NCAR
  • FUSE: Martyn Clark
  • NGEN: NOAA-OWP
  • TauDEM: David Tarboton, Utah State University

SYMFLUENCE framework developed by Darri Eythorsson.