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

prolog-notebook

v0.1.2

Published

Jupyter-style notebooks for Prolog. Runs in the browser, installs nothing.

Readme

prolog-notebook

Jupyter-style notebooks for Prolog. Runs in the browser, installs nothing.

⚠️ v0.1.0 — early. The execution core works and is tested. The renderer that turns a notebook file into a page is not written yet; today you mark cells up in HTML by hand. See Status.

The idea

Prolog is unusually badly served by a printed page, and unusually well served by an executable one.

Almost everything that trips up a Prolog learner is something you have to watch happen. A query does not return an answer, it returns answers one at a time on backtracking. A rule that reads correctly can be wrong because of the order its goals are in. once/1 around one goal is free and around the goal next to it is catastrophic. None of that survives being described; all of it is obvious the moment you run it and press ; a few times.

So the aim here is notebooks where the prose and the Prolog live together and the Prolog actually runs — for the reader, not just the author. That last part is the whole problem. A Jupyter kernel for Prolog already exists and is good, but it needs Python, then Jupyter, then the kernel, then a local SWI-Prolog: four installs before the first query. A reader who has to do that has already closed the tab.

prolog-notebook uses SWI-Prolog compiled to WebAssembly, so the Prolog system runs inside the page. No server, no kernel process, no install. You publish a static file and the reader clicks a link.

; next is the point

The reason this is not "Jupyter with a different kernel" is the button marked ; next.

Jupyter's model is request/response: run a cell, get a result. Prolog's model is a stream of solutions you walk through. In the included example, is_son(X) reports edward twice — and that duplication is the lesson, because it means Prolog found two proofs. A notebook that showed only a final list of results would have hidden the very thing worth teaching.

So a query cell gives you the first solution, and then you step.

Try it

git clone https://github.com/jarecsni/prolog-notebook
cd prolog-notebook
npm install
npm run example        # then open http://localhost:8777/example/

The example is a real worked section — the once/1 placement puzzle — not a widget demo. Predict what each version returns before you press Run.

It has to be served over HTTP. Opening example/index.html straight from disk leaves the buttons inert, because browsers block ES modules over file:// — the page detects this and says so rather than failing silently.

Use it

Headless, in Node — this is how you test that every example in a document still works:

import { createSession, formatSolution } from 'prolog-notebook';

const session = await createSession();
session.consult(`
  male(edward).  male(alfred).
  father(albert, edward).  mother(victoria, edward).
  parent(X, Y) :- father(X, Y) ; mother(X, Y).
  is_son(X) :- male(X), parent(_, X).
`);

// Step solutions one at a time, as at the prompt
const q = session.query('is_son(X)');
let r;
while (!(r = q.next()).done) console.log(formatSolution(r.solution));

// …or drain it
const { solutions } = session.query('is_son(X)').all();

In a browser, load the WASM bundle with a <script> tag, then import from prolog-notebook/browser. See example/index.html for the cell markup and src/notebook.js for the wiring.

API

| | | |---|---| | createSession(options?) | boots SWI-Prolog; returns a PrologSession | | session.consult(text, name?) | loads a clause base into user; {ok, error?} | | session.query(goal) | opens a query; returns a PrologQuery | | query.next() | one solution: {done, solution?, error?} | | query.all(limit?) | drains it: {solutions, error?, truncated} | | formatSolution(s) | renders bindings the way a top level would |

Two things that will bite you if you build this yourself

Both were found by driving a real browser, not by reading documentation.

Module context. prolog.query(Goal) runs with system as its context module, while consult/1 loads into user. Unqualified goals raise Unknown procedure: system:foo/1 even though the consult reported success. Goals are wrapped as user:( Goal ).

The last solution arrives with done. next() can return {done: true, value: {...}} — a final binding and the end of the search in a single step. Treating done as "stop, no more answers" silently drops the last solution, which is the kind of bug you don't notice until a lesson about backtracking quietly teaches the wrong thing.

Status

Working and tested:

  • execution core, environment-agnostic (src/engine.js), 8 passing tests
  • Node entry point, browser entry point
  • program cells and query cells with Run / ; next / all
  • the worked example

Not built yet:

  • a file-backed renderer — reading .ipynb or markdown and generating the cells. Today the example's cells are hand-written HTML. This is the next real piece of work.
  • custom elements (<prolog-program>, <prolog-query>) so notebooks drop into any static site
  • a VS Code notebook controller — VS Code supplies the UI, this supplies the kernel, still no Python
  • a CLI runner, to execute a document's cells in CI and fail the build when an example rots
  • trace/0 integration, for visible backtracking — where prolog-trace-viz would plug in
  • syntax highlighting

Prior art

prolog-jupyter-kernel — a proper Jupyter kernel for SWI and SICStus, from Anne Brecklinghaus's master's thesis at Düsseldorf. Use it if you already live in JupyterLab and don't mind the installs.

SWISH — SWI-Prolog's own browser environment, which has a notebook feature. Server-hosted and sandboxed; this is neither.

License

MIT