# @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: ```bash 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. ```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: ```typescript 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: '', // needed for HTTPS publicKey: '', // needed for HTTPS }, { hostName: 'api.example.com', type: 'localPort', target: '3002', privateKey: '', publicKey: '', }, { hostName: 'another-domain.com', type: 'ipAndPort', target: '192.168.1.100:80', privateKey: '', publicKey: '', } ]; // 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: ```typescript // 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: ```typescript 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: '', publicKey: '', }, // 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. ## License and Legal Information 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](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.