A module for creating a virtual host (vhost) layer to manage multiple SmartExpress instances.
Go to file
2024-05-29 14:17:09 +02:00
.vscode fix(core): initial 2020-02-06 22:41:25 +00:00
test fix(core): initial 2020-02-07 20:00:01 +00:00
ts fix(core): initial 2020-02-07 20:00:01 +00:00
.gitignore fix(core): initial 2020-02-06 22:41:25 +00:00
.gitlab-ci.yml fix(core): initial 2020-02-06 22:41:25 +00:00
license fix(core): initial 2020-02-06 22:41:25 +00:00
npmextra.json update tsconfig 2024-04-14 18:33:33 +02:00
package-lock.json 1.0.3 2020-02-07 20:00:02 +00:00
package.json update description 2024-05-29 14:17:09 +02:00
readme.hints.md update tsconfig 2024-04-14 18:33:33 +02:00
readme.md update tsconfig 2024-04-14 18:33:33 +02:00
tsconfig.json update tsconfig 2024-04-01 21:42:14 +02:00

@push.rocks/smartvhost

a module creating a vhost layer in order to maintain several smartexpress instances

Install

To install @push.rocks/smartvhost, use the following npm command:

npm install @push.rocks/smartvhost --save

This will add smartvhost as a dependency to your project and you are ready to use it to manage multiple virtual hosts within your applications.

Usage

@push.rocks/smartvhost simplifies the handling of multiple smartexpress instances or other target types by providing a virtual host (vhost) layer. This allows for differentiated handling of requests based on the hostname, among other criteria. Utilizing this module enables efficient scalability and organization of your web server components in a Node.js environment.

Below, you'll find comprehensive examples and explanations to help you get started and leverage the full spectrum of functionalities offered by smartvhost.

Importing and Initial Setup

Firstly, let's look into importing and setting up smartvhost in your project using modern ESM syntax and TypeScript.

import { SmartVHost } from '@push.rocks/smartvhost';

const mySmartVHost = new SmartVHost();

Upon instantiation, SmartVHost begins without any configured virtual hosts. To make it functional, you'll need to define and set configurations according to your needs.

Configuring Virtual Hosts

Virtual host configurations are crucial for directing traffic appropriately. smartvhost supports several types of configurations, which include directing traffic to local folders, specific IP and port combinations, local ports, or even other domains. Below is how to define and apply these configurations:

import { IVHostConfig } from '@push.rocks/smartvhost';

// Define an array of virtual host configurations
const vHostConfigs: IVHostConfig[] = [
  {
    hostName: 'example.com',
    type: 'folder',
    target: '/path/to/your/site',
    privateKey: '<SSL_PRIVATE_KEY>', // needed for HTTPS
    publicKey: '<SSL_PUBLIC_KEY>', // needed for HTTPS
  },
  {
    hostName: 'api.example.com',
    type: 'localPort',
    target: '3002',
    privateKey: '<SSL_PRIVATE_KEY>',
    publicKey: '<SSL_PUBLIC_KEY>',
  },
  {
    hostName: 'another-domain.com',
    type: 'ipAndPort',
    target: '192.168.1.100:80',
    privateKey: '<SSL_PRIVATE_KEY>',
    publicKey: '<SSL_PUBLIC_KEY>',
  }
];

// Apply the configurations to the smartvhost instance
mySmartVHost.setVHostConfigs(vHostConfigs);

Starting and Stopping smartvhost

To activate the virtual host layer, simply start your smartvhost instance. Similarly, you can stop it when necessary:

// To start
await mySmartVHost.start();

// When needed, stop
await mySmartVHost.stop();

Complete Example

Combining all the steps above, here's a complete example showcasing how to utilize @push.rocks/smartvhost in managing different vhosts for your application:

import { SmartVHost, IVHostConfig } from '@push.rocks/smartvhost';

async function setupSmartVHost() {
  const mySmartVHost = new SmartVHost();
  const vHostConfigs: IVHostConfig[] = [
    {
      hostName: 'example.com',
      type: 'folder',
      target: '/path/to/site',
      privateKey: '<SSL_PRIVATE_KEY>',
      publicKey: '<SSL_PUBLIC_KEY>',
    },
    // Include other configurations as needed
  ];

  mySmartVHost.setVHostConfigs(vHostConfigs);

  await mySmartVHost.start();
  console.log('SmartVHost started and serving configurations.');
  
  // When you're done, don't forget to stop it
  // await mySmartVHost.stop();
}

setupSmartVHost().catch(console.error);

This guide and examples should serve as a foundation to integrate and fully utilize smartvhost in your Node.js projects, thereby enhancing your web server's flexibility and efficiency in handling multiple domains or applications.

For advanced use cases, refer to the module's typedoc documentation and explore the extensive API options provided for fine-tuned control over your virtual host configurations and behaviors.

This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the license file within this repository.

Please note: The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.

Trademarks

This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.

Company Information

Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany

For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.

By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.