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

dataslope-tools-jar

v1.0.0

Published

OpenJDK 8 tools.jar (com.sun.tools.javac.Main) packaged for CDN delivery to the Dataslope in-browser Java playground, which drives javac via CheerpJ. Fetched at runtime from unpkg.

Readme

dataslope-tools-jar

OpenJDK 8 tools.jar (containing com.sun.tools.javac.Main) packaged as a standalone npm package so it can be delivered over a CDN to the Dataslope in-browser Java playground.

Why this package exists

The Java playground compiles and runs code entirely in the browser via CheerpJ (OpenJDK in WebAssembly). CheerpJ does not ship tools.jar, so the playground supplies its own copy of javac and loads it into CheerpJ's filesystem at runtime.

Hosting the ~18 MB jar on a CDN instead of the app's own origin keeps it off the Vercel bandwidth bill. We use unpkg specifically because:

  • jsDelivr refuses .jar files (returns HTTP 403).
  • GitHub release assets send no Access-Control-Allow-Origin header, so a browser fetch() is blocked by CORS.
  • unpkg serves the jar with access-control-allow-origin: * and, when the version is pinned, an immutable 1-year cache.

The app fetches it from https://unpkg.com/dataslope-tools-jar@<version>/tools.jar — see TOOLS_JAR_CDN in app/_components/runtime/cdn.ts.

Provenance & license

tools.jar is taken unmodified from OpenJDK 8 and is distributed under the GPL v2 with the Classpath Exception, the same license as OpenJDK itself. The corresponding source is OpenJDK 8 (https://openjdk.org/).

Publishing a new version

  1. Replace tools-jar/tools.jar with the new jar.
  2. Bump version in tools-jar/package.json.
  3. From the repo root, publish (you must be logged in to npm with publish rights for this package):
    npm run publish:tools-jar
    This runs npm publish ./tools-jar; publishConfig.access makes it public.
  4. Bump TOOLS_JAR_VERSION in app/_components/runtime/cdn.ts to match the new version so the app fetches the new jar. Pinning the version is what yields the immutable 1-year CDN cache.

Deploy ordering: publish the npm package before deploying an app build that points TOOLS_JAR_VERSION at it — the playground fetches the jar from unpkg at runtime, so the version must already exist on npm or Java will fail to start.