From 14baec56f725f90f3ba2febba802815b569edd6d Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Thu, 26 Mar 2026 15:44:05 +0000 Subject: [PATCH] fix(docs): refresh README content and align license copyright holder --- changelog.md | 7 + license | 2 +- readme.md | 549 ++++++++++++++++++--------------------- ts/00_commitinfo_data.ts | 2 +- 4 files changed, 267 insertions(+), 293 deletions(-) diff --git a/changelog.md b/changelog.md index dcb3009..dfa08e9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2026-03-26 - 4.5.2 - fix(docs) +refresh README content and align license copyright holder + +- Rewrite the README to better present network diagnostics, IP intelligence capabilities, usage examples, and full API reference +- Add issue reporting guidance and clarify legal and trademark wording in project documentation +- Update the license copyright holder to Task Venture Capital GmbH + ## 2026-03-26 - 4.5.1 - fix(ipintelligence) handle flat geolocation MMDB schema and clean up DNS client lifecycle diff --git a/license b/license index c9bedc7..0eed83d 100644 --- a/license +++ b/license @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Lossless GmbH +Copyright (c) 2015 Task Venture Capital GmbH Copyright (c) 2020 TomΓ‘s Arias Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/readme.md b/readme.md index 116e2cd..9837bce 100644 --- a/readme.md +++ b/readme.md @@ -1,40 +1,44 @@ # @push.rocks/smartnetwork 🌐 -Comprehensive network diagnostics and utilities for Node.js applications +Comprehensive network diagnostics and IP intelligence for Node.js β€” speed tests, port scanning, ICMP ping, traceroute, DNS, RDAP, ASN lookups, and geolocation in a single, promise-based toolkit. + +## Issue Reporting and Security + +For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/](https://community.foss.global/). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/](https://code.foss.global/) account to submit Pull Requests directly. ## πŸš€ Install -To install `@push.rocks/smartnetwork`, run the following command in your terminal: - ```bash pnpm install @push.rocks/smartnetwork --save ``` ## 🎯 Overview -**@push.rocks/smartnetwork** is your Swiss Army knife for network diagnostics in Node.js. Whether you're building network monitoring tools, implementing health checks, or just need to debug connectivity issues, this library has you covered with a clean, promise-based API. +**@push.rocks/smartnetwork** is your Swiss Army knife for network diagnostics in Node.js. Whether you're building monitoring dashboards, investigating IP ownership, or debugging connectivity β€” this library has you covered with a clean, async API and zero-config setup. + +Under the hood, system-level operations (ICMP ping, traceroute, raw-socket port checks, gateway detection) are powered by a bundled **Rust binary** for maximum performance and cross-platform reliability. Everything else β€” speed tests, DNS, public IP discovery, IP intelligence, HTTP health checks β€” runs in pure TypeScript. ### ✨ Key Features -- **🏎️ Speed Testing** - Measure download/upload speeds using Cloudflare's infrastructure -- **πŸ”Œ Port Management** - Check local/remote port availability, find free ports (sequential or random) -- **πŸ“‘ Connectivity Testing** - Ping hosts, trace routes, check endpoints -- **🌍 DNS Operations** - Resolve A, AAAA, and MX records with smart local/remote resolution -- **πŸ” Network Discovery** - Get network interfaces, gateways, public IPs -- **⚑ Performance Caching** - Built-in caching for expensive operations -- **πŸ”§ Plugin Architecture** - Extend functionality with custom plugins -- **πŸ“ Full TypeScript Support** - Complete type definitions included +| Category | Capabilities | +|----------|-------------| +| 🏎️ **Speed Testing** | Download/upload benchmarks via Cloudflare's global infrastructure | +| πŸ”Œ **Port Management** | Local/remote port checks, find free ports (sequential or random), exclusion lists | +| πŸ“‘ **Connectivity** | ICMP ping with stats, hop-by-hop traceroute, HTTP/HTTPS health checks | +| 🌍 **DNS** | A, AAAA, MX resolution with system-first + DoH fallback strategy | +| πŸ” **IP Intelligence** | ASN, organization, geolocation, RDAP registration β€” all from free public sources | +| πŸ–₯️ **Network Discovery** | Interfaces, default gateway, public IPv4/IPv6 | +| ⚑ **Caching** | Built-in TTL cache for expensive lookups | +| πŸ”§ **Extensible** | Plugin architecture for custom functionality | +| πŸ“ **TypeScript** | Full type definitions, ESM-native | ## πŸ’» Usage ### Basic Setup -First, import and initialize SmartNetwork: - ```typescript import { SmartNetwork } from '@push.rocks/smartnetwork'; -// Basic instance const network = new SmartNetwork(); // Start the Rust bridge (auto-started on first use, but explicit start is recommended) @@ -42,396 +46,359 @@ await network.start(); // ... use the network instance ... -// Clean up when done (stops the Rust bridge process) +// Clean up when done await network.stop(); - -// With caching enabled (60 seconds TTL) -const cachedNetwork = new SmartNetwork({ cacheTtl: 60000 }); ``` -### 🏎️ Network Speed Testing - -Measure your network performance using Cloudflare's global infrastructure: +Enable caching for repeated lookups: ```typescript -const speedTest = async () => { - // Quick speed test - const result = await network.getSpeed(); - console.log(`Download: ${result.downloadSpeed} Mbps`); - console.log(`Upload: ${result.uploadSpeed} Mbps`); - - // Advanced configuration - const advancedResult = await network.getSpeed({ - parallelStreams: 3, // Number of concurrent connections - duration: 5 // Test duration in seconds - }); - console.log(`Download: ${advancedResult.downloadSpeed} Mbps`); - console.log(`Upload: ${advancedResult.uploadSpeed} Mbps`); -}; +const network = new SmartNetwork({ cacheTtl: 60000 }); // 60s TTL ``` +--- + +### πŸ•΅οΈ IP Intelligence + +Get ASN, organization, geolocation, and RDAP registration data for any IPv4 address. Combines three free public data sources in parallel: + +- **RDAP** β€” direct queries to RIRs (RIPE, ARIN, APNIC, LACNIC, AFRINIC) for authoritative registration data +- **Team Cymru DNS** β€” fast ASN resolution via DNS TXT records +- **MaxMind GeoLite2** β€” in-memory MMDB databases (auto-downloaded from CDN, periodically refreshed) + +```typescript +const intel = await network.getIpIntelligence('8.8.8.8'); + +console.log(intel); +// { +// asn: 15169, +// asnOrg: 'Google LLC', +// registrantOrg: 'Google LLC', +// registrantCountry: 'United States', +// networkRange: '8.8.8.0/24', +// abuseContact: null, +// country: null, +// countryCode: 'US', +// city: null, +// latitude: 37.751, +// longitude: -97.822, +// accuracyRadius: null, +// timezone: 'America/Chicago' +// } +``` + +Works great for your own IP too: + +```typescript +const publicIps = await network.getPublicIps(); +if (publicIps.v4) { + const myIntel = await network.getIpIntelligence(publicIps.v4); + console.log(`You're on AS${myIntel.asn} (${myIntel.asnOrg}) in ${myIntel.city}, ${myIntel.countryCode}`); +} +``` + +The `IIpIntelligenceResult` interface: + +```typescript +interface IIpIntelligenceResult { + // ASN (Team Cymru primary, MaxMind fallback) + asn: number | null; + asnOrg: string | null; + + // Registration (RDAP) + registrantOrg: string | null; + registrantCountry: string | null; + networkRange: string | null; // CIDR or range + abuseContact: string | null; // abuse email from RDAP + + // Geolocation (MaxMind GeoLite2) + country: string | null; + countryCode: string | null; // ISO 3166-1 alpha-2 + city: string | null; + latitude: number | null; + longitude: number | null; + accuracyRadius: number | null; // km + timezone: string | null; // IANA timezone +} +``` + +> πŸ’‘ The GeoLite2 databases are fetched into memory from jsDelivr CDN on first use (~32 MB total). They auto-refresh in the background every 7 days (configurable via `IpIntelligence` options). No disk I/O, no API keys, no rate limits. + +--- + +### 🏎️ Speed Testing + +Measure network performance via Cloudflare's global infrastructure: + +```typescript +const result = await network.getSpeed(); +console.log(`⬇️ Download: ${result.downloadSpeed} Mbps`); +console.log(`⬆️ Upload: ${result.uploadSpeed} Mbps`); + +// Advanced: parallel streams + fixed duration +const advanced = await network.getSpeed({ + parallelStreams: 3, + duration: 5, +}); +``` + +--- + ### πŸ”Œ Port Management #### Check Local Port Availability -Verify if a port is available on your local machine (checks both IPv4 and IPv6): +Checks both IPv4 and IPv6: ```typescript -const checkLocalPort = async (port: number) => { - const isUnused = await network.isLocalPortUnused(port); - if (isUnused) { - console.log(`βœ… Port ${port} is available`); - } else { - console.log(`❌ Port ${port} is in use`); - } -}; - -await checkLocalPort(8080); +const isUnused = await network.isLocalPortUnused(8080); +console.log(isUnused ? 'βœ… Port 8080 is free' : '❌ Port 8080 is in use'); ``` #### Find Free Port in Range -Automatically discover available ports: - ```typescript -const findFreePort = async () => { - // Find a free port between 3000 and 3100 (sequential - returns first available) - const freePort = await network.findFreePort(3000, 3100); - - if (freePort) { - console.log(`πŸŽ‰ Found free port: ${freePort}`); - } else { - console.log('😒 No free ports available in range'); - } - - // Find a random free port in range (useful to avoid port conflicts) - const randomPort = await network.findFreePort(3000, 3100, { randomize: true }); - console.log(`🎲 Random free port: ${randomPort}`); - - // Exclude specific ports from the search - const portWithExclusions = await network.findFreePort(3000, 3100, { - exclude: [3000, 3001, 3005] // Skip these ports even if they're free - }); - console.log(`🚫 Free port (excluding specific ports): ${portWithExclusions}`); - - // Combine randomize with exclude options - const randomWithExclusions = await network.findFreePort(3000, 3100, { - randomize: true, - exclude: [3000, 3001, 3005] - }); - console.log(`🎲🚫 Random free port (with exclusions): ${randomWithExclusions}`); -}; -``` +// First available +const port = await network.findFreePort(3000, 3100); -#### Check Remote Port Availability +// Random pick (avoids clustering) +const randomPort = await network.findFreePort(3000, 3100, { randomize: true }); -Test if services are accessible on remote servers: - -```typescript -// Method 1: Using "host:port" syntax -const isOpen1 = await network.isRemotePortAvailable('example.com:443'); - -// Method 2: Using separate host and port -const isOpen2 = await network.isRemotePortAvailable('example.com', 443); - -// Method 3: With advanced options -const isOpen3 = await network.isRemotePortAvailable('example.com', { - port: 443, - protocol: 'tcp', // Only TCP is supported - retries: 3, // Number of connection attempts - timeout: 5000 // Timeout per attempt in ms +// With exclusions +const port2 = await network.findFreePort(3000, 3100, { + randomize: true, + exclude: [3000, 3001, 3005], }); - -// Note: UDP is not supported -try { - await network.isRemotePortAvailable('example.com', { - port: 53, - protocol: 'udp' - }); -} catch (e) { - console.error('UDP not supported:', e.code); // ENOTSUP -} ``` -### πŸ“‘ Network Connectivity +#### Check Remote Port -#### Ping Operations +```typescript +// Simple +const isOpen = await network.isRemotePortAvailable('example.com', 443); -Test connectivity and measure latency: +// With retries and timeout +const isOpen2 = await network.isRemotePortAvailable('example.com', { + port: 443, + retries: 3, + timeout: 5000, +}); +``` + +--- + +### πŸ“‘ Ping & Traceroute ```typescript // Simple ping -const pingResult = await network.ping('google.com'); -console.log(`Host alive: ${pingResult.alive}`); -console.log(`RTT: ${pingResult.time} ms`); +const ping = await network.ping('google.com'); +console.log(`Alive: ${ping.alive}, RTT: ${ping.time} ms`); -// Detailed ping statistics -const pingStats = await network.ping('google.com', { - count: 5, // Number of pings - timeout: 1000 // Timeout per ping in ms -}); +// Multi-ping with statistics +const stats = await network.ping('google.com', { count: 10, timeout: 2000 }); +console.log(`πŸ“Š min=${stats.min} avg=${stats.avg.toFixed(1)} max=${stats.max} loss=${stats.packetLoss}%`); -console.log(`πŸ“Š Ping Statistics:`); -console.log(` Packet loss: ${pingStats.packetLoss}%`); -console.log(` Min: ${pingStats.min} ms`); -console.log(` Max: ${pingStats.max} ms`); -console.log(` Avg: ${pingStats.avg.toFixed(2)} ms`); -console.log(` Stddev: ${pingStats.stddev.toFixed(2)} ms`); -``` - -#### Traceroute - -Analyze network paths hop-by-hop: - -```typescript -const hops = await network.traceroute('google.com', { - maxHops: 10, // Maximum number of hops - timeout: 5000 // Timeout in ms -}); - -console.log('πŸ›€οΈ Route to destination:'); +// Traceroute +const hops = await network.traceroute('google.com', { maxHops: 20 }); hops.forEach(hop => { const rtt = hop.rtt === null ? '*' : `${hop.rtt} ms`; console.log(` ${hop.ttl}\t${hop.ip}\t${rtt}`); }); ``` -*Note: Falls back to a single-hop stub if the `traceroute` binary is unavailable.* +> ⚠️ ICMP ping requires `CAP_NET_RAW` or appropriate `ping_group_range` sysctl on Linux. -### 🌍 DNS Operations +--- -Resolve various DNS record types using @push.rocks/smartdns with intelligent resolution strategy: +### 🌍 DNS Resolution + +Uses `@push.rocks/smartdns` with a system-first strategy and automatic DoH (DNS-over-HTTPS) fallback: ```typescript -const dnsRecords = await network.resolveDns('example.com'); - -console.log('πŸ” DNS Records:'); -console.log(' A records:', dnsRecords.A); // IPv4 addresses -console.log(' AAAA records:', dnsRecords.AAAA); // IPv6 addresses - -// MX records include priority -dnsRecords.MX.forEach(mx => { - console.log(` πŸ“§ Mail server: ${mx.exchange} (priority: ${mx.priority})`); +const dns = await network.resolveDns('example.com'); +console.log('A records:', dns.A); // ['93.184.216.34'] +console.log('AAAA records:', dns.AAAA); // ['2606:2800:220:1:248:1893:25c8:1946'] +dns.MX.forEach(mx => { + console.log(`πŸ“§ ${mx.exchange} (priority ${mx.priority})`); }); - -// Properly handles local hostnames (localhost, etc.) -const localDns = await network.resolveDns('localhost'); -console.log(' Localhost:', localDns.A); // Returns ['127.0.0.1'] ``` -*DNS resolution uses a `prefer-system` strategy: tries system resolver first (respects /etc/hosts and local DNS), with automatic fallback to Cloudflare DoH for external domains.* +--- ### πŸ₯ HTTP/HTTPS Health Checks -Monitor endpoint availability and response times: - ```typescript const health = await network.checkEndpoint('https://api.example.com/health', { - timeout: 5000 // Request timeout in ms + timeout: 5000, + rejectUnauthorized: true, }); - -console.log(`🩺 Endpoint Health:`); -console.log(` Status: ${health.status}`); -console.log(` RTT: ${health.rtt} ms`); -console.log(` Headers:`, health.headers); +console.log(`Status: ${health.status}, RTT: ${health.rtt.toFixed(0)} ms`); ``` -### πŸ–₯️ Network Interface Information +--- -#### Get All Network Interfaces - -List all network adapters on the system: +### πŸ–₯️ Network Interfaces & Public IPs ```typescript +// All interfaces const gateways = await network.getGateways(); - -Object.entries(gateways).forEach(([name, interfaces]) => { - console.log(`πŸ”Œ Interface: ${name}`); - interfaces.forEach(iface => { - console.log(` ${iface.family}: ${iface.address}`); - console.log(` Netmask: ${iface.netmask}`); - console.log(` MAC: ${iface.mac}`); - }); +Object.entries(gateways).forEach(([name, ifaces]) => { + console.log(`πŸ”Œ ${name}:`); + ifaces.forEach(i => console.log(` ${i.family}: ${i.address}`)); }); -``` -#### Get Default Gateway - -Retrieve the primary network interface: - -```typescript -const defaultGateway = await network.getDefaultGateway(); - -if (defaultGateway) { - console.log('🌐 Default Gateway:'); - console.log(' IPv4:', defaultGateway.ipv4.address); - console.log(' IPv6:', defaultGateway.ipv6.address); +// Default gateway +const gw = await network.getDefaultGateway(); +if (gw) { + console.log(`🌐 Gateway IPv4: ${gw.ipv4.address}`); } -``` -### 🌎 Public IP Discovery - -Discover your public-facing IP addresses: - -```typescript +// Public IPs (multiple fallback services: ipify, ident.me, seeip, icanhazip) const publicIps = await network.getPublicIps(); - -console.log(`🌍 Public IPs:`); -console.log(` IPv4: ${publicIps.v4 || 'Not available'}`); -console.log(` IPv6: ${publicIps.v6 || 'Not available'}`); +console.log(`🌍 IPv4: ${publicIps.v4 || 'N/A'}`); +console.log(`🌍 IPv6: ${publicIps.v6 || 'N/A'}`); ``` -### ⚑ Performance Caching +--- -Reduce network calls with built-in caching: +### ⚑ Caching + +Caching applies to `getGateways()`, `getPublicIps()`, and `getIpIntelligence()`: ```typescript -// Create instance with 60-second cache TTL -const cachedNetwork = new SmartNetwork({ cacheTtl: 60000 }); +const network = new SmartNetwork({ cacheTtl: 60000 }); // 60s -// First call fetches from network -const gateways1 = await cachedNetwork.getGateways(); -const publicIps1 = await cachedNetwork.getPublicIps(); - -// Subsequent calls within 60 seconds use cache -const gateways2 = await cachedNetwork.getGateways(); // From cache ⚑ -const publicIps2 = await cachedNetwork.getPublicIps(); // From cache ⚑ +const ips1 = await network.getPublicIps(); // fetches +const ips2 = await network.getPublicIps(); // cache hit ⚑ ``` -### πŸ”§ Plugin Architecture - -Extend SmartNetwork with custom functionality: - -```typescript -// Define your plugin -class CustomNetworkPlugin { - constructor(private smartNetwork: SmartNetwork) {} - - async customMethod() { - // Your custom network logic here - return 'Custom result'; - } -} - -// Register the plugin -SmartNetwork.registerPlugin('customPlugin', CustomNetworkPlugin); - -// Use the plugin -const network = new SmartNetwork(); -const PluginClass = SmartNetwork.pluginsRegistry.get('customPlugin'); -const plugin = new PluginClass(network); -await plugin.customMethod(); - -// Clean up when done -SmartNetwork.unregisterPlugin('customPlugin'); -``` +--- ### 🚨 Error Handling -Handle network errors gracefully with custom error types: - ```typescript -import { NetworkError } from '@push.rocks/smartnetwork'; +import { SmartNetwork, NetworkError, TimeoutError } from '@push.rocks/smartnetwork'; try { await network.isRemotePortAvailable('example.com', { protocol: 'udp' }); } catch (error) { if (error instanceof NetworkError) { - console.error(`❌ Network error: ${error.message}`); - console.error(` Error code: ${error.code}`); + console.error(`${error.message} (code: ${error.code})`); // ENOTSUP } } ``` -### πŸ“š TypeScript Support +Error codes: `EINVAL` (invalid argument), `ENOTSUP` (not supported), `ETIMEOUT` (timeout). -This package is written in TypeScript and provides comprehensive type definitions: +--- + +### πŸ”§ Plugin Architecture ```typescript -interface SmartNetworkOptions { - cacheTtl?: number; // Cache TTL in milliseconds +class MyPlugin { + constructor(private network: SmartNetwork) {} + async doStuff() { /* ... */ } } -interface IFindFreePortOptions { - randomize?: boolean; // If true, returns a random free port instead of the first one - exclude?: number[]; // Array of port numbers to exclude from the search -} +SmartNetwork.registerPlugin('myPlugin', MyPlugin); -interface Hop { - ttl: number; // Time to live - ip: string; // IP address of the hop - rtt: number | null; // Round trip time in ms -} +const PluginClass = SmartNetwork.pluginsRegistry.get('myPlugin'); +const plugin = new PluginClass(network); +await plugin.doStuff(); -// ... and many more types for complete type safety +SmartNetwork.unregisterPlugin('myPlugin'); ``` -## πŸ› οΈ Advanced Examples +--- -### Building a Network Monitor +### πŸ“ Custom Logging + +Replace the default `console` logger: ```typescript -const monitorNetwork = async () => { +import { setLogger } from '@push.rocks/smartnetwork'; + +setLogger({ + debug: (msg) => myLogger.debug(msg), + info: (msg) => myLogger.info(msg), + warn: (msg) => myLogger.warn(msg), + error: (msg) => myLogger.error(msg), +}); +``` + +--- + +## πŸ› οΈ Advanced Example: Network Monitor + +```typescript +const monitor = async () => { const network = new SmartNetwork({ cacheTtl: 30000 }); - + // Check critical services const services = [ - { name: 'Web Server', host: 'example.com', port: 443 }, - { name: 'Database', host: 'db.internal', port: 5432 }, - { name: 'Cache', host: 'redis.internal', port: 6379 } + { name: 'Web', host: 'example.com', port: 443 }, + { name: 'DB', host: 'db.internal', port: 5432 }, ]; - - for (const service of services) { - const isUp = await network.isRemotePortAvailable(service.host, service.port); - console.log(`${service.name}: ${isUp ? 'βœ… UP' : '❌ DOWN'}`); + + for (const svc of services) { + const up = await network.isRemotePortAvailable(svc.host, svc.port); + console.log(`${svc.name}: ${up ? 'βœ… UP' : '❌ DOWN'}`); } - - // Check internet connectivity + + // Internet connectivity + latency const ping = await network.ping('8.8.8.8'); - console.log(`Internet: ${ping.alive ? 'βœ… Connected' : '❌ Disconnected'}`); - - // Measure network performance + console.log(`Internet: ${ping.alive ? 'βœ…' : '❌'} (${ping.time} ms)`); + + // Speed const speed = await network.getSpeed(); - console.log(`Speed: ⬇️ ${speed.downloadSpeed} Mbps / ⬆️ ${speed.uploadSpeed} Mbps`); -}; + console.log(`Speed: ⬇️ ${speed.downloadSpeed} / ⬆️ ${speed.uploadSpeed} Mbps`); -// Run monitor every minute -setInterval(monitorNetwork, 60000); -``` - -### Service Discovery - -```typescript -const discoverServices = async () => { - const network = new SmartNetwork(); - const commonPorts = [22, 80, 443, 3000, 3306, 5432, 6379, 8080, 9200]; - - console.log('πŸ” Scanning local services...'); - - for (const port of commonPorts) { - const isUsed = !(await network.isLocalPortUnused(port)); - if (isUsed) { - console.log(` Port ${port}: In use (possible service running)`); - } + // Who am I? + const ips = await network.getPublicIps(); + if (ips.v4) { + const intel = await network.getIpIntelligence(ips.v4); + console.log(`AS${intel.asn} (${intel.asnOrg}) β€” ${intel.city || intel.countryCode}`); } + + await network.stop(); }; ``` +## πŸ“‹ Full API Reference + +| Method | Description | Requires Rust | +|--------|-------------|:---:| +| `start()` / `stop()` | Start/stop the Rust binary bridge | β€” | +| `getSpeed(opts?)` | Cloudflare speed test (download + upload) | No | +| `ping(host, opts?)` | ICMP ping with optional multi-ping stats | Yes | +| `traceroute(host, opts?)` | Hop-by-hop network path analysis | Yes | +| `isLocalPortUnused(port)` | Check if local port is free (IPv4+IPv6) | Yes | +| `findFreePort(start, end, opts?)` | Find available port in range | Yes | +| `isRemotePortAvailable(target, opts?)` | TCP port check on remote host | Yes | +| `getGateways()` | List all network interfaces | No | +| `getDefaultGateway()` | Get default gateway info | Yes | +| `getPublicIps()` | Discover public IPv4/IPv6 (4 fallback services) | No | +| `resolveDns(host)` | Resolve A, AAAA, MX records | No | +| `checkEndpoint(url, opts?)` | HTTP/HTTPS health check with RTT | No | +| `getIpIntelligence(ip)` | ASN + org + geo + RDAP registration | No | + ## 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. +This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE](./LICENSE) file. **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. +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 or third parties, 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 or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar. ### Company Information -Task Venture Capital GmbH -Registered at District court Bremen HRB 35230 HB, Germany +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. +For any legal inquiries or 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. \ No newline at end of file +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. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index effa786..187a3c5 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartnetwork', - version: '4.5.1', + version: '4.5.2', description: 'A toolkit for network diagnostics including speed tests, port availability checks, and more.' }