Open In App

Node.js tls.connect() Method

The tls.connect() method is an inbuilt application programming interface of class TLS within tls module which is used to create a tls.TLSSocket object.

Syntax:



const tls.connect(port[, host][, options][, callback])

Parameters: This method accept four parameters as mentioned above and described below:

Return Value: This method returns the object of tls.TLSSocket.



How to generate Private key and Public certificate?

Example 1: Filename: index.js




// Node.js program to demonstrate the
// tls.connect() method
var tls = require('tls'),
    fs = require('fs'),
  
// Port and host address for server    
PORT = 1337,
HOST = '127.0.0.1',
value = null;
   
// Private key and public certificate for access
var options = {
  key: fs.readFileSync('private-key.pem'),
  cert: fs.readFileSync('public-cert.pem'),
  rejectUnauthorized: false
};
  
// Creating and initializing server
var server = tls.createServer(options, function(socket) {
  
  // Print the data that we received
  socket.on('data', function(data) {
     console.log('\nReceived: %s ',
     data.toString().replace(/(\n)/gm, ""));
  });
  
  // Stopping the server
  // by using the close() method
  server.close(() => {
    console.log("Server closed successfully");
  });
});
  
// Start listening on a specific port and address
// by using listen() method
server.listen(PORT, HOST, function() {
  console.log("I'm listening at %s, on port %s", HOST, PORT);
});
  
// Creating and initializing client
// by using tls.connect() method
var client = tls.connect(PORT, HOST, options, function() {
    
  // Setting maximum send fragment limit
  // by using tlsSocket.setMaxSendFragment() method
  value = client.setMaxSendFragment(16384);
  
  if(value)
     client.write("tls fragment is set");
  else
     client.write("tls fragment is not set")
    
  client.end(() => {
     console.log("Client closed successfully");
  });
  
});

Run the index.js file using the following command:

node index.js

Output:

I'm listening at 127.0.0.1, on port 1337
Client closed successfully

Received: tls fragment is set
Server closed successfully

Example 2: Filename: index.js




// Node.js program to demonstrate the
// tls.connect() method
var tls = require('tls'),
    fs = require('fs'),
  
// Port and host address for server    
PORT = 1337,
HOST = '127.0.0.1';
   
// Private key and public certificate for access
var options = {
  key: fs.readFileSync('private-key.pem'),
  cert: fs.readFileSync('public-cert.pem'),
  rejectUnauthorized: false
};
  
// Creating and initializing server
var server = tls.createServer(options, function(socket) {
  
  // Setting maximum send fragment limit
  // by using tlsSocket.setMaxSendFragment() method
  value = socket.setMaxSendFragment(16384);
  
  if(value)
    socket.write("tls fragment is set");
  else
    socket.write("tls fragment is not set")
  
  // Stopping the server
  // by using the close() method
  server.close(() => {
     console.log("Server closed successfully")
  });
});
  
// Start listening on a specific port and address
// by using listen() method
server.listen(PORT, HOST, function() {
  console.log("I'm listening at %s, on port %s", HOST, PORT);
});
  
// Creating and initializing client
// by using tls.connect() method
var client = tls.connect(PORT, HOST, options, function() {
   console.log("client is connected");
});
  
client.on("data", function(data) {
  
  console.log('Received: %s',
  data.toString().replace(/(\n)/gm, ""));
  
  // Close the connection after receiving the message
  client.end(() => {
     console.log("client closed successfully")
  });
  
});

Run the index.js file using the following command:

node index.js

Output:

I'm listening at 127.0.0.1, on port 1337
client is connected
Received: tls fragment is set
client closed successfully
Server closed successfully

Reference: https://nodejs.org/dist/latest-v12.x/docs/api/tls.html#tls_tls_connect_port_host_options_callback


Article Tags :