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:
    Run npm 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, with docker build -t networking-toolbox . then run docker 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

Author

About Me

This was built by me, Alicia Sykes (@lissy93 on GitHub). I'm an open source developer, passionate about Linux, security and the web.

I build free and open source software for the developers, sysadmins and sometimes humans. My objective is to build tools that respect a user's privacy and are accessible to everyone. I have a particular interest in security, Linux and self-hosting. But also just love to build things that are fun and (sometimes, maybe) useful.

Alicia Sykes

Sponsorship

I have developed, open sourced and maintain 100+ applications and libraries, used by over 1 million people every year. And pretty much everything I build is free to use, open source, and without ads, tracking or paywalls. Because I believe software should be free and accessible to everyone.

But running these projects does cost money. And maintaining them takes time. So, if you've found this app useful, please consider sponsoring me. My sponsors mean the world to me, and it's because of their generosity that this app can remain free for everyone.

More Apps

If you've found this app useful, you might also like some of my other projects:

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.