I have a PostgreSQL, php5, running on Apache2.0 (on a Windows machine.)
I want to be able to push updates to the client's browser when certain table rows are updated. I came across this https://github.com/brianc/node-postgres
I just need some direction to get started! Thanks :)
You could also use message queues to talk between Node.js and Php. This means that you need to create a message in php though which is more complex than just having Node.js polling your database (if possible). Not sure if there are message queues that talk HTTP but if there are you don't even need to use Node.js at all. You can have your client-side talk to your message queue.