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

@explorable-viz/fluid

v0.12.2

Published

A functional programming language which integrates a bidirectional dynamic analysis, connecting outputs to data sources in a fine-grained way. Fluid is implemented in PureScript and runs in the browser.

Readme

Fluid: Language-integrated data provenance

Fluid is a pure functional programming language, with a provenance-tracking runtime and Pythonic syntax. Fluid is implemented in PureScript and runs in the browser.

develop GitHub pages

End-user setup

Software required

  • Node.js >=18.0.0
  • yarn >= 1.22

Initial configuration

Building a Fluid website usually involves building a Node application:

  • yarn add @explorable-viz/fluid
  • yarn install to install Node dependencies
  • yarn install-website article to copy example article website from @exploreable-viz/fluid
  • Add dist/ and website/ folders to .gitignore

Bundling and serving website

  • yarn bundle-website $WEBSITE_NAME to bundle website to dist/$WEBSITE_NAME
  • npx http-serve dist/$WEBSITE_NAME -c-1 to serve website at localhost

Development setup

Additional software required

Initial configuration

  • Clone repository (for Windows users, under Ubuntu WSL)
  • Run ./script/setup/dev-setup.sh from the top-level directory
  • yarn install to install Node dependencies

Use

  • yarn build to build interpreter

Running programs from the command line

Fluid examples in the dist/fluid/fluid can be evaluated from the command line as follows (from the top-level directory):

npx fluid evaluate -f <path>

Note that the path is relative and should not include the .fld extension, e.g. for the range.fld example:

% npx fluid evaluate -f example/range
((0, 0) : ((0, 1) : ((1, 0) : ((1, 1) : []))))
Success

Running websites locally (as part of Fluid development)

As an example, to build and run the website literate-execution:

  • yarn build to ensure Fluid source code has been compiled (can be skipped on subsequent runs)
  • yarn bundle-website literate-execution (can be skipped if the website being run is fluid-org)
  • yarn serve literate-execution (you may be prompted to proceed; press y)
  • Open a browser to the served URL (defaults to 127.0.0.1:8080)

Note: yarn bundle-serve is a convenient shorthand for yarn bundle-website followed by yarn serve

Testing

Running the tests from the command line

After building, tests can be run from the command line via yarn test-all

Running tests in browser

  • As per command-line tests above, but run yarn test-browser, which opens a browser window.
  • To observe the status of tests, click Debug in the browser window, and then open the JavaScript Console for your browser (e.g., via the Developer Tools).

Run Puppeteer tests for website X

  • yarn bundle-website X
  • yarn test-website X

Rebuild with puppeteerTests.headless set to false to run in browser.

Development via VS Code

The following are some notes on developing Fluid using VS Code.

  • Avoid having PureScript installed globally

  • Install the PureScript IDE extension

  • In the PureScript IDE extension settings, select Add Npm Path

  • For Windows users:

    • Launch VSCode through Ubuntu (WSL) terminal
    • Install WSL extension in VSCode