rubtsovav / php-nodejs-wrapper
NodeJS process wrapper.
1.2.1
2017-09-08 19:59 UTC
Requires
- php: >=5.6.0
- symfony/process: 3.*
Requires (Dev)
- phpunit/phpunit: ~4.0
- scrutinizer/ocular: ~1.1
This package is not auto-updated.
Last update: 2024-10-27 03:16:10 UTC
README
Php library allows you to execute JavaScript code using the node js.
##Example
use Kurbits\JavaScript\NodeRunner;
$nodejs = new NodeRunner();
// you can set js source code by one string
$nodejs->setSource('y = function(x){return x*x;}');
// and call js functions like this
echo $nodejs->call('y', 3); // print 9
// or like this
echo $nodejs->execute('y(3)'); // print 9
// Also you can set many sources as array
// old sources will be deleted
$nodejs->setSources([
'y = function(x) { return x*x; }',
'z = function(x, y) { return x + y; }',
]);
echo $nodejs->execute('z(3, y(3))'); // print 12
// Example with the grab of output
$nodejs->addSource('document = {
write: function(string) {
process.stdout.write(string);
}
};');
$nodejs->addSource('document.write(z(3, y(3)))');
echo $nodejs->execute(); // print 12