UNPKG

@globalping/n8n-nodes-globalping

Version:

The Globalping n8n node allows you to perform network measurements such as ping, traceroute, mtr, http and DNS lookups from thousands of locations around the world.

24 lines 904 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Globalping = void 0; const n8n_workflow_1 = require("n8n-workflow"); const GlobalpingV1_node_1 = require("./v1/GlobalpingV1.node"); class Globalping extends n8n_workflow_1.VersionedNodeType { constructor() { const baseDescription = { displayName: 'Globalping', name: 'globalping', icon: 'file:globalping.svg', group: ['transform'], subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}', description: 'Globalping API official node', defaultVersion: 1, }; const nodeVersions = { 1: new GlobalpingV1_node_1.GlobalpingV1(baseDescription), }; super(nodeVersions, baseDescription); } } exports.Globalping = Globalping; //# sourceMappingURL=Globalping.node.js.map