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 🙏

© 2025 – Pkg Stats / Ryan Hefner

webcorn

v0.2.7

Published

ASGI/WSGI Server running in a browser

Readme

Webcorn

中文

Webcorn is a Python ASGI/WSGI application server that runs in the browser, assisting in providing a complete offline Python web development experience.

Using Webcorn, Django/Flask/FastAPI applications can run in the browser.

Webcorn is based on Pyodide, which is a WebAssembly version of CPython that can run in the browser.

Webcorn operates in a web worker, preventing blockage of the browser's UI thread.

Webcorn relies on a service worker to redirect HTTP requests from the client. It specially handles the Set-Cookie HTTP headers generated by the python application, solving the issue of JavaScript code being unable to process Set-Cookie headers in the browser.

Through micropip, Webcorn supports installing Python packages in the browser. Before running a Python application, Webcorn checks the dependencies in the project's requirements.txt or pyproject.toml files and installs them into the browser environment.

Webcorn supports a WebAssembly version of the sqlite3 database.

Features

Webcorn has the following features:

  • [x] A fully functional WSGI/ASGI application server running in the browser.
  • [x] Support for Django/Flask/FastAPI/Wagtail applications.
  • [x] Support for sqlite3 databases.
  • [x] Support for handling Set-Cookie HTTP headers in the browser.
  • [x] Support for installing Python packages from the PYPI repository.
  • [ ] Support for installing JavaScript packages from the npm repository.
  • [ ] Support for bundling JavaScript code

Try it

Access Webcorn Playground to see how Django/Flask/FastAPI/Wagtail applications run offline in the browser.

Run Webcorn Playground locally

Clone this repository, run python start.py in example/webcorn-playground directory, and access http://localhost:8000 in your browser.

$ git clone https://github.com/frybox/webcorn
$ cd webcorn/example/webcorn-playground
$ python start.py

Usage

Install Webcorn from npm registry:

$ npm install webcorn

Implement the service worker script sw.mjs:

import { startWebServer } from "webcorn/service-worker";

startWebServer();

Register the service worker in the index.html file:

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Webcorn Playground</title>
</head>
<body>
    <script>
        if ('serviceWorker' in navigator) {
            const serviceWorkerScript = "sw.mjs";
            const type = 'module';
            navigator.serviceWorker.register(serviceWorkerScript, {type})
                .then(registration => {
                    console.log('ServiceWorker registration successful');
                })
                .catch(error => {
                    console.error('ServiceWorker registration failed:', error);
                });
        } else {
            console.error("ServiceWorker not support");
        }
    </script>
</body>
</html>

Implement the webcorn server script server.mjs:

import { startAppServer } from "webcorn/server";

const options = {
        projectRoot: '/opt/project_django',
        appSpec: 'project_django.wsgi:application',
        log: console.log,
}
try {
    startAppServer(options);
} catch (e) {
    window.location = new URL('../', window.location).href;
}

Webcorn server html file server.html:

<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Webcorn Server - Django Application</title>
  </head>
  <body>
    <script type="module" src="./server.mjs"></script>
  </body>
</html>

Check the example/webcorn-playground for more details.

License

MIT