Skip to content

SDKs

TIP

Examples used in this documentation can be found in immudb examples repository.

In the most common scenario, you would perform write and read operations on the database talking to the server. In this case your application will be a client to immudb.

SDKs make it comfortable to talk to the server from your favorite language, without having to deal with details about how to talk to it.

The most well-known and recommended immudb SDK is written in Golang, but there are other SDKs available, both maintained by the internal team and by the community.

LanguageMaintainerLatest versionlinkNotes
goimmudb team1.4.0link
pythonimmudb team1.4.0link
JAVAimmudb team1.0.0link
.NETimmudb team1.0.5link
NODEimmudb team1.0.4linkVerification is not working
rubyCommunity (Ankane)0.1.1link

The immudb server manages the requests from the outside world to the store. In order to insert or retrieve data, you need to talk with the server.

SDK Architecture

immugw communication

For other unsupported programming languages, immugw provides a REST gateway that can be used to talk to the server via generic HTTP.

immugw can be found in its own repository

immugw proxies REST client communication and gRPC server interface. For security reasons, immugw should not run on the same server as immudb. The following diagram shows how the communication works:

immugw communication explained

Released under the Apache 2.0 License.