feat(smartnetwork): add Rust-powered network diagnostics bridge and IP intelligence lookups

This commit is contained in:
2026-03-26 15:24:43 +00:00
parent e9dcd45acd
commit c3ac9b4f9e
34 changed files with 5499 additions and 3159 deletions

View File

@@ -1,21 +1,17 @@
// native scope
import * as os from 'os';
import * as https from 'https';
import * as perfHooks from 'perf_hooks';
import * as os from 'node:os';
import * as https from 'node:https';
import * as perfHooks from 'node:perf_hooks';
export { os, https, perfHooks };
// @pushrocks scope
import * as smartdns from '@push.rocks/smartdns';
import * as smartping from '@push.rocks/smartping';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartstring from '@push.rocks/smartstring';
import * as smartrust from '@push.rocks/smartrust';
export { smartdns, smartpromise, smartping, smartstring };
export { smartdns, smartrust };
// @third party scope
// @ts-ignore
import isopen from 'isopen';
import * as systeminformation from 'systeminformation';
// third party
import * as maxmind from 'maxmind';
export { isopen, systeminformation };
export { maxmind };