0.7.19 • Published 9 days ago

@php-wasm/node v0.7.19

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

WebAssembly PHP for Node.js

This package ships WebAssembly PHP binaries and the JavaScript API optimized for Node.js. It comes with the following PHP extensions:

  • SQLite
  • Libzip
  • Libpng
  • CLI
  • OpenSSL
  • MySQL

It uses the host filesystem directly and can access the network if you plug in a custom WS proxy.

Here's how to use it:

import { PHP } from '@php-wasm/node';
const php = PHP.load('8.0', {
	requestHandler: {
		documentRoot: new URL('./', import.meta.url).pathname,
	},
});

// Create and run a script directly
php.writeFile('./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/node 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.6

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.0

5 months ago

0.4.0

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.58

11 months ago

0.1.59

11 months ago

0.1.51

12 months ago

0.1.49

12 months ago

0.1.42

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.32

1 year ago

0.1.28

1 year ago

0.1.26

1 year ago

0.1.24

1 year ago

0.1.20

1 year ago

0.1.19

1 year ago

0.1.18

1 year ago

0.1.17

1 year ago

0.1.16

1 year ago

0.1.11

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.1.0

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago