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

wrapture

v0.1.33

Published

Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.

Downloads

152

Readme

Wrapture

One-click exporter from PyTorch models to Web-ready ONNX with JS/TS wrappers.

Commitizen friendly PRs Welcome SemVer 2.0 npm version issues license size npm GitHub Repo stars codecov build

About

Wrapture lets you go from a Python-trained model to deployable JavaScript with a single command. It generates TypeScript bindings and a Web/Node-compatible wrapper, using WebGPU/WASM-ready ONNX runtimes.

[!NOTE] This is an experiment trying to fulfil a need between python and js. YMMV

Table of Contents

🚀 Features

  • ✅ Convert PyTorch models to ONNX
  • ✅ Optional ONNX simplification and quantization
  • ✅ Generate loadModel() + predict() JavaScript wrappers
  • ✅ Auto-generate .d.ts TypeScript bindings

Prerequisites

Python 3.10+ required

Install Python if you don’t have it: 👉 https://www.python.org/downloads/


Install required Python packages

python3 -m pip install torch onnx onnxsim onnxruntime

Check your installation:

python3 -c "import torch; print(torch.__version__)"
python3 -c "import onnx; print(onnx.__version__)"

You should see output like:

2.x.x etc..

Installation

npm i -g wrapture

Generating a Model

A helper script is provided to create a basic test model.

python3 python/scripts/basic_model.py

This generates:

test/fixtures/basic_model.pt

Usage

wrapture --input test/fixtures/basic_model.pt --output ./wrapped

You’ll see a spinner as the model is converted, and then a JS/TS wrapper is written to the ./wrapped/ directory.

Output Structure

Example contents of a --output ./ folder:

/
 ├── wrapped.ts # The loadModel() + predict() logic
 ├── wrapped.d.ts # Fully typed API
 └── model.onnx # Exported ONNX model

Example: Using the Generated Model

import { loadModel } from './wrapped.js';

const model = await loadModel();

const input = { data: new Float32Array(1 _3_ 224 \* 224), dims: [1, 3, 224, 224]
};

const result = await model.predict(input); console.log(result); // { // logits:
Float32Array, // probabilities: number[], // predictedClass: number // }

API

Full API documentation is available here.


Contributing

Want to contribute? Please read the CONTRIBUTING.md and CODE_OF_CONDUCT.md

License

This project is licensed under the MIT License - see the LICENSE file for details.

Changelog

See the CHANGELOG.md for details on the latest updates.

Sponsor me

I'm an Open Source evangelist, creating stuff that does not exist yet to help get rid of secondary activities and to enhance systems already in place, be it documentation or web sites.

The sponsorship is an unique opportunity to alleviate more hours for me to maintain my projects, create new ones and contribute to the large community we're all part of :)

Support me on GitHub Sponsors.

p.s. Ukraine is still under brutal Russian invasion. A lot of Ukrainian people are hurt, without shelter and need help. You can help in various ways, for instance, directly helping refugees, spreading awareness, putting pressure on your local government or companies. You can also support Ukraine by donating e.g. to Red Cross, Ukraine humanitarian organisation or donate Ambulances for Ukraine.