Skip to content

swift-libp2p/swift-libp2p

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

174 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

swift-libp2p-logo-wide

Swift LibP2P

Swift Package Manager compatible Build & Test (macos and linux)

The Swift implementation of the libp2p networking stack

Table of Contents

Overview

libp2p is a networking stack and library modularized out of The IPFS Project, and bundled separately for other tools to use.

libp2p is the product of a long, and arduous quest of understanding -- a deep dive into the internet's network stack, and plentiful peer-to-peer protocols from the past. Building large-scale peer-to-peer systems has been complex and difficult in the last 15 years, and libp2p is a way to fix that. It is a "network stack" -- a protocol suite -- that cleanly separates concerns, and enables sophisticated applications to only use the protocols they absolutely need, without giving up interoperability and upgradeability. libp2p grew out of IPFS, but it is built so that lots of people can use it, for lots of different projects.

Docs & Examples

Note:

To learn more, check out the following resources:

Disclaimer

  • ‼️ This is a work in progress ‼️
  • ‼️ Please don't use swift-libp2p in anything other than experimental projects until it reaches 1.0 ‼️
  • ‼️ Help it get there sooner by contributing ‼️

Install

Include the following dependency in your Package.swift file

let package = Package(
    ...
    dependencies: [
        ...
        .package(name: "LibP2P", url: "https://github.com/swift-libp2p/swift-libp2p.git", .upToNextMinor(from: "0.3.0"))
    ],
        ...
        .target(
            ...
            dependencies: [
                ...
                .product(name: "LibP2P", package: "swift-libp2p"),
            ]),
    ...
)

Usage

Example

import LibP2P
import LibP2PNoise
import LibP2PYAMUX

/// Configure your Libp2p networking stack...
let lib = try await Application.make(.detect(), peerID: .ephemeral(.Ed25519))
// Configure the libp2p instance with the modules of your choosing
lib.security.use(.noise)
lib.muxers.use(.yamux)
// Start a TCP server listening on localhost:10000
lib.servers.use(.tcp(host: "127.0.0.1", port: 10_000))

/// Register your routes handlers...
/// - Note: Uses the same syntax as swift-vapor
try lib.routes()

/// Start libp2p
try await lib.startup()

/// Do some networking stuff... πŸ“‘

/// At some later point, when you're done with libp2p...
try await lib.asyncShutdown()

Packages

  • List of packages currently in existence for swift libp2p:
  • Legend: 🟒 = kinda works, 🟑 = doesn't really work yet, πŸ”΄ = not started yet, but on the radar
Name Status Description Build (macOS & Linux)
Libp2p
swift-libp2p 🟒 swift-libp2p entry point Build & Test (macos and linux)
swift-libp2p-core 🟒 Core interfaces, types, and abstractions Build & Test (macos and linux)
Protocol Negotiation
swift-libp2p-mss 🟒 MultistreamSelect transport upgrader (embedded) Build & Test (macos and linux)
Transport
swift-libp2p-tcp 🟒 TCP transport (embedded) N/A
swift-libp2p-udp 🟑 UDP transport (embedded) N/A
swift-libp2p-quic πŸ”΄ TODO: QUIC transport N/A
swift-libp2p-websocket 🟒 WebSocket transport Build & Test (macos and linux)
swift-libp2p-http πŸ”΄ TODO: HTTP1 transport N/A
swift-libp2p-http2 πŸ”΄ TODO: HTTP2 transport N/A
swift-libp2p-webrtc πŸ”΄ TODO: WebRTC & WebRTC Direct N/A
swift-libp2p-webtransport πŸ”΄ TODO: WebTransport N/A
Encrypted Channels
swift-libp2p-plaintext 🟒 Plaintext channel Build & Test (macos and linux)
swift-libp2p-noise 🟒 Noise crypto channel Build & Test (macos and linux)
swift-libp2p-tls πŸ”΄ TODO: TLS 1.3+ crypto channel N/A
Stream Muxers
swift-libp2p-mplex 🟒 MPLEX stream multiplexer Build & Test (macos and linux)
swift-libp2p-yamux 🟒 YAMUX stream multiplexer Build & Test (macos and linux)
Private Network
swift-libp2p-pnet πŸ”΄ TODO: Private Networks (psk) N/A
NAT Traversal
swift-libp2p-autonat πŸ”΄ TODO: AutoNAT v1 & v2 N/A
Peerstore
swift-libp2p-peerstore 🟑 Reference implementation of peer metadata storage component (embedded) N/A
Connection Manager
swift-libp2p-connection-manager 🟑 Reference implementation of connection manager (embedded) N/A
Routing
swift-libp2p-kad-dht 🟑 Kademlia Distributed Hash Table Build & Test (macos and linux)
swift-libp2p-circuit πŸ”΄ TODO: Circuit Relay v1 & v2 N/A
swift-libp2p-dcutr πŸ”΄ TODO: DCUtR (hole punching) N/A
Pubsub
swift-libp2p-pubsub 🟑 Core PubSub Protocols & FloodSub and GossipSub Routers Build & Test (macos and linux)
RPC
swift-libp2p-rpc πŸ”΄ TODO: A simple RPC library for libp2p N/A
Utilities/miscellaneous
swift-libp2p-dnsaddr 🟒 A DNSAddr Resolver Build & Test (macos)
swift-libp2p-mdns 🟑 MulticastDNS for LAN discovery Build & Test (macos)
swift-libp2p-identify 🟒 IPFS Identify Protocols (embedded) Build & Test (macos and linux)
swift-libp2p-rendezvous πŸ”΄ TODO: Rendezvous (protocol poster board) N/A
Integrations
swift-libp2p-queues-redis-driver 🟒 A Queues driver powered by Redis Build & Test (macos and linux)
swift-libp2p-fluent 🟒 Fluent, a Database Abstraction Layer Build & Test (macos and linux)
Testing and examples
swift-libp2p-testing πŸ”΄ TODO: A collection of testing utilities for libp2p N/A

Dependencies

Name Description Build (macOS & Linux)
Cryptography
swift-libp2p-crypto Crypto abstractions for Keys, Hashes and Ciphers Build & Test (macos and linux)
Multiformats
swift-multibase Self Identifying Base Encodings Build & Test (macos and linux)
swift-multicodec Multiformat Codecs Build & Test (macos and linux)
swift-multihash Self Identifying Hashes Build & Test (macos and linux)
swift-multiaddr Self Identifying Addresses Build & Test (macos and linux)
swift-peer-id Peer IDs Build & Test (macos and linux)
Utilities
swift-bases Base encodings & decodings Build & Test (macos and linux)
swift-varint Protocol Buffer Variable Integers Build & Test (macos and linux)
swift-cid Content Identifiers Build & Test (macos and linux)
External
swift-nio Network application framework N/A

API

/// TODO

Contributing

Contributions are welcomed! This code is very much a proof of concept. I can guarantee you there's a better / safer way to accomplish the same results. Any suggestions, improvements, or even just critiques, are welcome!

Let's make this code better together! 🀝

Credits

License

MIT Β© 2022 Breth Inc.

Packages

 
 
 

Contributors

Languages