php-wasm icon indicating copy to clipboard operation
php-wasm copied to clipboard

PHP in Browser, powered by WebAssembly. Original Project by Oraoto, ES6 & Clang Upgrades by Sean Morris.

Results 40 php-wasm issues
Sort by recently updated
recently updated
newest added

To recreate, follow the readme instructions for build in place: 1. `$ npm install -g php-wasm` (completes successfully) 2. `$ php-wasm image` results in: `make: *** No rule to make...

babel dependencies are only needed at build time and not needed by users of this library. if left in "dependencies", users of the library are forced to download about 109...

Can you provide some demos for common templating engines, like - [mustache](https://github.com/bobthecow/mustache.php)/[handlebars](https://github.com/zordius/lightncandy) - [twig](https://twig.symfony.com/) - [smarty](https://smarty-php.github.io/smarty/) - [blade](https://github.com/EFTEC/BladeOne) - [latte](https://latte.nette.org/) - [plates?](https://platesphp.com/)/[foil?](https://github.com/FoilPHP/Foil) - [phug?](https://phug-lang.com/)

Package file defines files such `php-web.js`, but this file isn't part of this repository. Can you include these files, or they're part of another repository? Should I look into [`oraoto/pib`](https://github.com/oraoto/pib)...

How do I access the filesystem module with PhpWeb? I saw that the code doesn't export that module to the binary. Is there a simpler way to get this access,...

using `if(window && document)` in NodeJS did not particularly work inside of NodeJS or worker. window is undefined so a real check have to do: `if (typeof window !== undefined...

In the README file 1. Correct incorrect spelling for JavaScript like `javscript` (miss a `a`) 2. Use the case in the official website like JavaScript (uppercase J and S)

Hi, [php-8.3.0](https://www.php.net/releases/8.3/en.php) is released, and it contains many new features, such as explicit typing of class constants, deep-cloning of readonly properties and additions to the randomness functionality. As always it...

The first and only parameter of `runPhpScriptTag` is `element`, which is expected and used as exclusively as a DOM element node (`element.getAttribute...`). However, the line below calls that function with...

1. use explicit path in your import statment (don't forget to use `.js` at the end. 2. remove all cjs / `require()` calls 3. add `"type": "module"` to package.json