About Networking Toolbox
Networking Toolbox is a collection of free, open-source networking utilities designed to simplify common network-related tasks for system administrators and network engineers.
On this page
External links
API
Yes, we have an API! It's free to use, doesn't require an API key nor CORS.
Self-Hosting
Networking Toolbox can be easily deployed to your own server. Just run the following command:
docker run -p 8080:8080 lissy93/networking-toolbox
You can also checkout our docker-compose.yml
, using the lissy93/networking-toolbox
image from
DockerHub.
Building from Source
Prerequisites
Make sure you have Node.js (v22 or higher) and Git installed on your machine.
Setup
git clone git@github.com:Lissy93/networking-toolbox.git
cd networking-toolbox
npm install
npm start
Dev
npm run dev
Check 'n Test
npm run test
npm run tsc
npm run lint
Deploying
- Option #1 - Source:
Runnpm run build
, and then upload the contents of./dist
to any web server, CDN or static hosting provider - Option #2 - Cloud:
Just fork the repo, and import into Vercel, Netlify or any other cloud provider for instant deployment - Option #3 - Docker:
Build the Docker image, withdocker build -t networking-toolbox .
then rundocker run -p 8080:8080 networking-toolbox
Contributing
Contributions of any kind are welcome (and much appreciated!)
Please read our contribution guidelines before submitting a pull request.
Bugs
Found something that's not working as expected? You can raise an issue here and I'll look into getting it fixed for you.
For security issues, please see our security.txt
Attributions
Sponsors
Contributors
Stargazers
License
Networking Toolbox is licensed under the MIT License © Alicia Sykes 2025
Conditions
- You Can
- Use commercially
- Modify the code
- Distribute the code
- Sublicense the app
- You Cannot
- Hold the author liable
- You Must
- Include the original copyright
- Include the below license in full
Full License
Copyright (c) 2025 Alicia Sykes [aliciasykes.com] Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.