Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

php-dbg-wasm

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

php-dbg-wasm

phpdbg for wasm.

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

seanmorris/php-dbg-wasm php-dbg-wasm

Find php-dbg-wasm on npm

Run the phpdbg runtime in Node.js or ESM-capable browser contexts.

Install

npm install php-dbg-wasm

Quickstart

import { PhpDbgNode } from 'php-dbg-wasm/PhpDbgNode';

const php = new PhpDbgNode();

await php.run();
await php.provideInput('help');

On current Node releases, the core PhpDbgNode entrypoint can be consumed from either ESM or CommonJS:

const { PhpDbgNode } = require('php-dbg-wasm/PhpDbgNode');

const php = new PhpDbgNode();

await php.run();
await php.provideInput('help');

Runtime-loadable extension helper JS packages remain ESM-only; provide extension assets manually through the runtime constructor options when you need to bypass the helper packages.

For broader project documentation, see:

https://github.com/seanmorris/php-wasm

Keywords

php

FAQs

Package last updated on 18 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts