Open Source Go System Software - Page 12

Go System Software

View 8543 business solutions
System Go Clear Filters

Browse free open source Go System Software and projects below. Use the toggles on the left to filter open source Go System Software by OS, license, language, programming language, and project status.

  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • Gen AI apps are built with MongoDB Atlas Icon
    Gen AI apps are built with MongoDB Atlas

    The database for AI-powered applications.

    MongoDB Atlas is the developer-friendly database used to build, scale, and run gen AI and LLM-powered apps—without needing a separate vector database. Atlas offers built-in vector search, global availability across 115+ regions, and flexible document modeling. Start building AI apps faster, all in one place.
    Start Free
  • 1
    balancer

    balancer

    A go library that implements load balancing algorithms

    balancer is a layer 7 load balancer that supports http and https, and it is also a go library that implements load-balancing algorithms.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    cozystack

    cozystack

    PaaS and framework that replace or compete with AWS, VMware

    Open Source AI-ready PaaS and framework for building your own cloud on bare metal and running managed Kubernetes, virtual machines, Databases-as-a-Service or for creating your own AWS/GCP/Azure competitor for ISP/MSP/hosting providers. CNCF Project - Control your data - Cut dependence from the tech giants - Enable digital sovereignty - Use modern tools and APIs with any server - Fully utilize GPU resources for AI Who is it for? Banks and fintechs, AI-driven companies, service providers and data centers, governances, regulated and privacy-conscious organizations, integrators and independent IT consultants
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    drive

    drive

    Google Drive client for the commandline

    drive is a tiny program to pull or push Google Drive files. Make sure to set your GOPATH in your env, .bashrc or .bash_profile file. You can install scripts for automating major drive commands and syncing from drive-google wiki, also described in platform_packages.md. See file Makefile which currently supports cross compilation. Just run make and then inspect the binaries in directory bin. drive supports resource configuration files (.driverc) that you can place both globally (in your home directory) and locally(in the mounted drive dir) or in the directory that you are running an operation from, relative to the root. drive allows you to specify a '.driveignore' file similar to your .gitignore, in the root directory of the mounted drive. Blank lines and those prefixed by '#' are considered as comments and skipped.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    etcd operator

    etcd operator

    etcd operator creates/configures/manages etcd clusters atop Kubernetes

    The etcd operator manages etcd clusters deployed to Kubernetes and automates tasks related to operating an etcd cluster.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Simple, Secure Domain Registration Icon
    Simple, Secure Domain Registration

    Get your domain at wholesale price. Cloudflare offers simple, secure registration with no markups, plus free DNS, CDN, and SSL integration.

    Register or renew your domain and pay only what we pay. No markups, hidden fees, or surprise add-ons. Choose from over 400 TLDs (.com, .ai, .dev). Every domain is integrated with Cloudflare's industry-leading DNS, CDN, and free SSL to make your site faster and more secure. Simple, secure, at-cost domain registration.
    Sign up for free
  • 5
    faasd

    faasd

    A lightweight & portable faas engine

    faasd is OpenFaaS reimagined but without the cost and complexity of Kubernetes. It runs on a single host with very modest requirements, making it fast and easy to manage. Under the hood it uses containers and Container Networking Interface (CNI) along with the same core OpenFaaS components from the main project. To deploy microservices and functions that you can update and monitor remotely. When you don't have the bandwidth to learn or manage Kubernetes. To deploy embedded apps in IoT and edge use-cases. To distribute applications to a customer or client. You have a cost sensitive project - run faasd on a 1GB VM for 5-10 USD / mo or on your Raspberry Pi. When you just need a few functions or microservices, without the cost of a cluster.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    fft

    fft

    A fast distributed file transfer

    fft is a distributed file transfer tool designed to accelerate large file movement by coordinating multiple relay nodes in parallel rather than depending on a single server’s bandwidth ceiling. Its architecture splits a transfer into concurrent “workers” that fetch or push chunks across multiple paths, improving throughput on high-latency or bandwidth-constrained links. The project is implemented in Go and exposes a straightforward command-line interface so operators can stand up senders, receivers, and relays with minimal ceremony. Because it’s oriented around relays, it can better utilize geographically diverse infrastructure and avoid bottlenecks at any one egress point. The issue tracker highlights active concerns such as congestion control with many workers and IPv6 support, signaling performance-minded design goals. Overall, fft aims to give teams a fast, resilient way to move big artifacts using parallelism at the network edge.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    gRPC-Go

    gRPC-Go

    The Go language implementation of gRPC. HTTP/2 based RPC

    gRPC is a modern open source high performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed computing to connect devices, mobile applications and browsers to backend services. Define your service using Protocol Buffers, a powerful binary serialization toolset and language. Install runtime and dev environments with a single line and also scale to millions of RPCs per second with the framework. Automatically generate idiomatic client and server stubs for your service in a variety of languages and platforms. Bi-directional streaming and fully integrated pluggable authentication with HTTP/2-based transport.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    go-elasticsearch

    go-elasticsearch

    The Go client for Elasticsearch

    Language clients are forward compatible; meaning that clients support communicating with greater or equal minor versions of Elasticsearch. Elasticsearch language clients are only backwards compatible with default distributions and without guarantees made. When using Go modules, include the version in the import path, and specify either an explicit version or a branch. The elasticsearch package ties together two separate packages for calling the Elasticsearch APIs and transferring data over HTTP, esapi and elastictransport, respectively. When you export the ELASTICSEARCH_URL environment variable, it will be used to set the cluster endpoint(s). Separate multiple adresses by a comma. The _examples folder contains a number of recipes and comprehensive examples to get you started with the client, including configuration and customization of the client, using a custom certificate authority (CA) for security (TLS), mocking the transport for unit tests.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    golang-autoclicker

    golang-autoclicker

    Auto clicker in Golang to simulate mouse clicks

    Auto clicker for desktop applications in Golang to simulate mouse clicks. Used robotgo package for controlling the mouse events. Using getpointer.go will make it sleep for 2 seconds, then return the coordinates of your mouse's position. You will use those coordinates to plot where the mouse need to move. I have 2 positions that I want the mouse to move to and click, then with a combination of a while loop, I just reiterate between clicking on two positions. After you start your mouse will move to the plotted locations and click as soon as it gets to the coordinate.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Keep company data safe with Chrome Enterprise Icon
    Keep company data safe with Chrome Enterprise

    Protect your business with AI policies and data loss prevention in the browser

    Make AI work your way with Chrome Enterprise. Block unapproved sites and set custom data controls that align with your company's policies.
    Download Chrome
  • 10
    gops

    gops

    A tool to list and diagnose Go processes currently running

    gops is a command to list and diagnose Go processes currently running on your system. For processes that starts the diagnostics agent, gops can report additional information such as the current stack trace, Go version, memory stats, etc. You could set GOPS_CONFIG_DIR environment variables to assign your config dir. Default, gops will use the current user's home directory(AppData on windows). It is possible to use gops tool both in local and remote mode. Local mode requires that you start the target binary as the same user that runs gops binary. To use gops in a remote mode you need to know target's agent address. In Local mode use process's PID as a target; in Remote mode target is a host:port combination. gops supports CPU and heap pprof profiles. After reading either heap or CPU profile, it shells out to the go tool pprof and let you interactively examine the profiles.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    gron

    gron

    Make JSON greppable

    Make JSON greppable. gron transforms JSON into discrete assignments to make it easier to grep for what you want and see the absolute 'path' to it. It eases the exploration of APIs that return large blobs of JSON.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    holer

    holer

    Holer exposes local servers behind NATs and firewalls to the public in

    Holer exposes local servers behind NATs and firewalls to the public internet over secure tunnels. Support forwarding message based on TCP protocol.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    inlets-operator

    inlets-operator

    Get public TCP LoadBalancers for local Kubernetes clusters

    Get public TCP LoadBalancers for local Kubernetes clusters. When using a managed Kubernetes engine, you can expose a Service as a "LoadBalancer" and your cloud provider will provision a TCP cloud load balancer for you, and start routing traffic to the selected service inside your cluster. In other words, you get ingress to an otherwise internal service. The inlets-operator brings that same experience to your local Kubernetes cluster by provisioning a VM on the public cloud and running an inlets server process there. Within the cluster, it runs the inlets client as a Deployment, and once the two are connected, it updates the original service with the IP, just like a managed Kubernetes engine.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    k3sup

    k3sup

    bootstrap K3s over SSH in < 60s

    k3sup is a lightweight utility to get from zero to KUBECONFIG with k3s on any local or remote VM. All you need is ssh access and the k3sup binary to get kubectl access immediately. The tool is written in Go and is cross-compiled for Linux, Windows, MacOS and even on Raspberry Pi. This tool uses ssh to install k3s to a remote Linux host. You can also use it to join existing Linux hosts into a k3s cluster as agents. First, k3s is installed using the utility script from Rancher, along with a flag for your host's public IP so that TLS works properly. The kubeconfig file on the server is then fetched and updated so that you can connect from your laptop using kubectl. k3sup was developed to automate what can be a very manual and confusing process for many developers, who are already short on time. Once you've provisioned a VM with your favorite tooling, k3sup means you are only 60 seconds away from running kubectl get pods on your own computer.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    kiosk

    kiosk

    Multi-tenancy extension for Kubernetes

    kiosk is a multi-tenancy extension For Kubernetes. Secure cluster sharing & self-service namespace provisioning. Accounts & account users to separate tenants in a shared Kubernetes cluster. Self-service namespace provisioning for account users. Account limits to ensure quality of service and fairness when sharing a cluster. Namespace templates for secure tenant isolation and self-service namespace initialization. Multi-cluster tenant management for sharing a pool of clusters. Kubernetes is designed as a single-tenant platform, which makes it hard for cluster admins to host multiple tenants in a single Kubernetes cluster. However, sharing a cluster has many advantages, e.g. more efficient resource utilization, less admin/configuration effort or easier sharing of cluster-internal resources among different tenants.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    lastbackend

    lastbackend

    System for containerized apps management, from build to scaling

    Last.Backend is a company that provides DevOps products for IT companies across the world. Last.Backend container management platform is the new and modern open-source container management system with service discovery, overlay networks, and more. The container platform is an open-source system for automating the deployment, scaling, and management of containerized applications. It contains a set of technologies like container scheduling, service discovery, overlay network, container runtime, container images runtime, load-balancing and more. All of these technologies are provided out of the box and don't require additional research and setup. Our design principles allow us to create an extendable and powerful system. We separated runtime into the particular package and used interfaces to add the ability to extend supported technologies.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    logspout

    logspout

    Log routing for Docker container logs

    Logspout is a log router for Docker containers that runs inside Docker. It attaches to all containers on a host, then routes their logs wherever you want. It also has an extensible module system. It's a mostly stateless log appliance. It's not meant for managing log files or looking at history. It is just a means to get your logs out to live somewhere else, where they belong. For now it only captures stdout and stderr, but a module to collect container syslog is planned. Logspout is a very small Docker container (15.2MB virtual, based on Alpine). The simplest way to use logspout is to just take all logs and ship to a remote syslog. Just pass a syslog URI (or several comma separated URIs) as the command. Here we show use of the tls encrypted transport option in the URI. You can tell logspout to ignore specific containers by setting an environment variable when starting your container.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    magiclinksdev

    magiclinksdev

    Transactional email magic link and One-Time Password (OTP)

    The magiclinksdev project is an authentication service for magic link and One-Time Password (OTP) use cases. There is built-in email support through Amazon SES and SendGrid.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    pq

    pq

    Pure Go Postgres driver for database/sql

    In most cases clients will use the database/sql package instead of using this package directly. Similarly to libpq, when establishing a connection using pq you are expected to supply a connection string containing zero or more parameters. A subset of the connection parameters supported by libpq are also supported by pq. Additionally, pq also lets you specify run-time parameters (such as search_path or work_mem) directly in the connection string. This is different from libpq, which does not allow run-time parameters in the connection string, instead requiring you to supply them in the options parameter. database/sql does not dictate any specific format for parameter markers in query strings, and pq uses the Postgres-native ordinal markers. For additional instructions on querying see the documentation for the database/sql package.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    servicegui

    A graphical user interface for managing systemd services on Linux syst

    Servicegui is a Go-based application developed using the Fyne framework. It provides a graphical user interface for managing systemd services on Linux systems. With Servicegui, users can easily view, start, stop, restart, and remove systemd services. Features: List running systemd services. Filter services based on their states: active, inactive, or all. Perform actions like stop, restart, and remove on selected services. User-friendly GUI built with Fyne.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    simple-ip-monitor-windows

    simple-ip-monitor-windows

    Windows GUI monitor IP network tool

    This is a simple tool to monitor IP addresses and report Windows system network address information through files and RESTful API. No installation is required. Just download and run.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    sso

    sso

    Single sign-on solution for securing internal services

    sso — lovingly known as the S.S. Octopus or octoboi — is the authentication and authorization system BuzzFeed developed to provide a secure, single sign-on experience for access to the many internal web apps used by our employees. It depends on Google as its authoritative OAuth2 provider and authenticates users against a specific email domain. Further authorization based on Google Group membership can be required on a per-upstream basis. The main idea behind sso is a "double OAuth2" flow, where sso-auth is the OAuth2 provider for sso-proxy and Google is the OAuth2 provider for sso-auth.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    syzkaller

    syzkaller

    syzkaller is an unsupervised coverage-guided kernel fuzzer

    syzkaller is Google’s coverage-guided, feedback-driven kernel fuzzer designed to uncover reliability and security bugs in operating system kernels at scale. It automatically generates, mutates, and minimizes system call programs, then drives them through a specialized executor (syz-executor) to exercise deep kernel paths. The system integrates tightly with sanitizers such as KASAN, KMSAN, KCSAN, and UBSAN to surface memory safety, concurrency, and undefined behavior issues with actionable reports. A distributed architecture coordinates many fuzzing VMs, collects crash signatures, deduplicates them, and bisects to the first bad commit when possible. syzkaller maintains per-kernel “syz” descriptions so it understands arguments, flags, and resources of thousands of syscalls and ioctls across Linux and other kernels. It also ships sophisticated reproducers and minimization routines so developers get small, deterministic test cases they can run locally to fix bugs quickly.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    vcluster

    vcluster

    Create fully functional virtual Kubernetes clusters

    Create fully functional virtual Kubernetes clusters with vcluster. Each vcluster runs inside a namespace of the underlying k8s cluster. It's cheaper than creating separate full-blown clusters and it offers better multi-tenancy and isolation than regular namespaces. vcluster itself is a certified Kubernetes distribution and is 100% Kubernetes API conform. Everything that works in a regular Kubernetes cluster works in cluster. Pods are scheduled in the underlying host cluster, so they get no performance hit at all while running. Split up large multi-tenant clusters into smaller vcluster to reduce complexity and increase scalability. Since most vcluster api requests and objects will not reach the host cluster at all, vcluster can greatly decrease pressure on the underlying Kubernetes cluster. Create via vcluster CLI, helm, kubectl, Argo or any of your favorite tools (it is basically just a StatefulSet).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    warpdl

    warpdl

    A powerful and versatile cross-platform download manager.

    Warp is a powerful and versatile cross-platform download manager. With its advanced technology, Warp has the ability to accelerate your download speeds by up to 10 times, revolutionizing the way you obtain files on any operating system.
    Downloads: 0 This Week
    Last Update:
    See Project