0.7.19 • Published 9 days ago

@php-wasm/web v0.7.19

Weekly downloads
-
License
GPL-2.0-or-later
Repository
github
Last release
9 days ago

WebAssembly PHP for the web

This package ships WebAssembly PHP binaries and the JavaScript API optimized for the web and a low bundle size. It comes with the Libzip extension and the SQLite extension.

Here's how to use it:

import { PHP } from '@php-wasm/web';

// PHP.load() calls import('php.wasm') internally
// Your bundler must resolve import('php.wasm') as a static file URL.
// If you use Webpack, you can use the file-loader to do so.
const php = await PHP.load('8.0', {
	requestHandler: {
		documentRoot: '/www',
	},
});

// Create and run a script directly
php.mkdirTree('/www');
php.writeFile('/www/index.php', `<?php echo "Hello " . $_POST['name']; ?>`);
await php.run({ scriptPath: './index.php' });

// Or use the familiar HTTP concepts:
const response = await php.request({
	method: 'POST',
	url: '/index.php',
	data: { name: 'John' },
});
console.log(response.text);

Attribution

@php-wasm/web started as a fork of the original PHP to WebAssembly build published by Oraoto in https://github.com/oraoto/pib and modified by Sean Morris in https://github.com/seanmorris/php-wasm.

0.7.4

10 days ago

0.7.10

10 days ago

0.7.9

10 days ago

0.7.5

10 days ago

0.7.8

10 days ago

0.7.7

10 days ago

0.7.19

9 days ago

0.7.18

9 days ago

0.7.15

9 days ago

0.7.14

10 days ago

0.7.17

9 days ago

0.7.16

9 days ago

0.7.3

10 days ago

0.7.1

16 days ago

0.7.0

16 days ago

0.6.16

23 days ago

0.6.15

24 days ago

0.6.14

29 days ago

0.6.13

30 days ago

0.6.10

1 month ago

0.6.9

1 month ago

0.6.8

2 months ago

0.6.7

2 months ago

0.6.6

2 months ago

0.6.5

2 months ago

0.6.4

2 months ago

0.6.3

3 months ago

0.6.2

3 months ago

0.6.1

3 months ago

0.6.0

3 months ago

0.5.6

4 months ago

0.5.5

4 months ago

0.5.4

4 months ago

0.5.3

4 months ago

0.5.2

5 months ago

0.5.1

5 months ago

0.3.0

7 months ago

0.3.1

7 months ago

0.2.0

11 months ago

0.1.56

12 months ago

0.1.57

11 months ago

0.1.58

11 months ago

0.1.59

11 months ago

0.1.51

12 months ago

0.1.49

12 months ago

0.1.45

12 months ago

0.1.46

12 months ago

0.1.60

11 months ago

0.1.61

11 months ago

0.1.40

12 months ago

0.1.39

1 year ago

0.1.37

1 year ago

0.1.35

1 year ago

0.1.34

1 year ago

0.1.32

1 year ago

0.1.28

1 year ago

0.1.26

1 year ago

0.1.23

1 year ago

0.1.21

1 year ago

0.1.20

1 year ago

0.1.19

1 year ago

0.1.18

1 year ago

0.1.10

1 year ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.3

1 year ago

0.0.1

1 year ago