mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 00:36:14 -04:00
feat(tool): random port generator
This commit is contained in:
parent
afac5664c8
commit
7c540f1208
4 changed files with 47 additions and 1 deletions
11
src/tools/random-port-generator/index.ts
Normal file
11
src/tools/random-port-generator/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Server } from '@vicons/tabler';
|
||||
import type { ITool } from '../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'Random port generator',
|
||||
path: '/random-port-generator',
|
||||
description: 'Generate random port numbers outside of the range of "known" ports (0-1023).',
|
||||
keywords: ['system', 'port', 'lan', 'generator', 'random', 'developement', 'computer'],
|
||||
component: () => import('./random-port-generator.vue'),
|
||||
icon: Server,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue