Node.js sokets
-
hi there, i need to create a soket that can get information from an other soket. my node server is hosted and i want to create in my localhost a soket that can connect to that server and give me some text information.
can anyone help me with this? -
@ahmed_commando It sounds like you will probably want to look into NodeBB plugin development. A NodeBB plugin can either hook into the SocketIO the NodeBB server is handling for reading or it can generate its own content for sending.
-
thank you for helping, but i can't found the plugin. PS : im new with node.js so plz help with a snippet.
-
I don't know of any plugin that is already built to do what you want. Like most of the rest of us, you will likely have to write some Node JavaScript to create the plugin to suit your needs. I don't have the time to write custom code for free, although if it is worth money to you, the NodeBB development team may be interested in consulting for you.
Now that I re-read what you originally asked, I'm curious if you actually need "Sockets" (as in SocketIO, which is server-initiated TCP/IP connection to a browser) or if APIs on both the hosted NodeBB server and the localhost server would do this better.
Either way, if you choose to go the NodeBB plugin route, you will need to know which Hooks are available. A "hook" is an event that your plugin subscribes to. When that event happens in the core NodeBB server, it will call the function in your plugin which subscribes to the event.