Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9059909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:05:20+00:00 2026-06-16T15:05:20+00:00

Is it possible to connect to a NodeJS Server from another server? Two NodeJS

  • 0

Is it possible to connect to a NodeJS Server from another server? Two NodeJS servers communicating with each other?

//Server Code
var io = require('socket.io').listen(8090);

io.sockets.on('connection', function (socket) {
io.sockets.emit('this', { will: 'be received by everyone'});

socket.on('private message', function (from, msg) {
   console.log('I received a private message by ', from, ' saying ', msg);
});

socket.on('disconnect', function () {
   io.sockets.emit('user disconnected');
  });
});

//Client Code in Server Code. Connecting to another server.
io.connect( "http://192.168.0.104:8091" );  //Connect to another server from this one.

//ETC...
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T15:05:21+00:00Added an answer on June 16, 2026 at 3:05 pm

    Here’s a simple example that creates a server and a client that connects to that server. Remember that what you send has to be a buffer (strings are automatically converted to buffers). The client and server works independently of eachother, so can be put in the same app or on totally different computers.

    Server (server.js):

    const net = require("net");
    
    // Create a simple server
    var server = net.createServer(function (conn) {
        console.log("Server: Client connected");
    
        // If connection is closed
        conn.on("end", function() {
            console.log('Server: Client disconnected');
            // Close the server
            server.close();
            // End the process
            process.exit(0);
        });
    
        // Handle data from client
        conn.on("data", function(data) {
            data = JSON.parse(data);
            console.log("Response from client: %s", data.response);
        });
    
        // Let's response with a hello message
        conn.write(
            JSON.stringify(
                { response: "Hey there client!" }
            )
        );
    });
    
    // Listen for connections
    server.listen(61337, "localhost", function () {
        console.log("Server: Listening");
    });
    

    Client (client.js):

    const net = require("net");
    
    // Create a socket (client) that connects to the server
    var socket = new net.Socket();
    socket.connect(61337, "localhost", function () {
        console.log("Client: Connected to server");
    });
    
    // Let's handle the data we get from the server
    socket.on("data", function (data) {
        data = JSON.parse(data);
        console.log("Response from server: %s", data.response);
        // Respond back
        socket.write(JSON.stringify({ response: "Hey there server!" }));
        // Close the connection
        socket.end();
    });
    

    The conn and socket objects both implement the Stream interface.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to use Socket.IO and its client to connect between two Node.js servers
Is it possible to connect to a remote instance of mysql server from a
Is it possible to connect a 32 bit Oracle server from a 64 bit
Is it possible to connect two PCs without a router using just an ethernet
Is that possible to connect mysql database between servers. I mean, lets say i
Is it possible to connect to Sql Server for the purpose of executing simple
I'm using NodeJS to run a socket server (using socket.io). When a client connects,
Is it possible to connect to a SQL Server Express 2008 database in ASP.NET
Is it possible to connect to an instance of sql express via another computer
Is it possible to connect to an SSH server through a Telnet connection? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.