Node.js and PHP together: DNode in PHP
Join the DZone community and get the full member experience.
Join For FreePHP is great because everybody uses it (and it's fast, and easy to learn, etc.). Node.js is great for lots of reasons, unless it isn't (and if controversy excites you, also see 1,2).
Henri Bergius doesn't want to choose between PHP and Node.js:
Both environments have their strong points. Node.js is very fast and flexible, but PHP has a lot more mature tools and libraries available. So in a lot of projects it is hard to choose between the two. But now you might not have to.
..and now, thanks to his implementation of DNode in PHP, you can have your PHP cake and Node.js it too.
For example, if you create a DNode service for Node.js like this:
var dnode = require('dnode'); var server = dnode({ zing: function (n, cb) { cb(n * 100) } }); server.listen(7070);
then you can call zing() with PHP like this:
// Connect to DNode server running in port 7070 and call // Zing with argument 33 $dnode = new DNode\DNode(); $dnode->connect(7070, function($remote, $connection) { // Remote is a proxy object that provides us all methods // from the server $remote->zing(33, function($n) use ($connection) { echo "n = {$n}\n"; // Once we have the result we can close the connection $connection->end(); }); });
Henri's full announcement includes additional (temptingly) simple code samples for implementing a DNode server in PHP, and communicating bidirectionally in PHP using DNode. Or head over to github for the whole (nicely documented) project.
Opinions expressed by DZone contributors are their own.
Trending
-
Extending Java APIs: Add Missing Features Without the Hassle
-
Auditing Tools for Kubernetes
-
The SPACE Framework for Developer Productivity
-
Design Patterns for Microservices: Ambassador, Anti-Corruption Layer, and Backends for Frontends
Comments