Convert Figma logo to code with AI

schollz logocroc

Easily and securely send things from one computer to another :crocodile: :package:

28,992
1,146
28,992
6

Top Related Projects

get things from one computer to another, safely

🚀 Streaming file transfer over WebTorrent (torrents on the web)

16,387

An IPFS implementation in Go

66,967

Open Source Continuous File Synchronization

A Smart Ethernet Switch for Earth

Quick Overview

Croc is a tool for securely transferring files between computers. It allows for easy and fast file sharing through relay-assisted peer-to-peer connections, with end-to-end encryption and no size limits.

Pros

  • Simple and user-friendly command-line interface
  • End-to-end encryption for secure file transfers
  • No file size limits or account registration required
  • Cross-platform support (Windows, macOS, Linux)

Cons

  • Requires both sender and receiver to have croc installed
  • May be slower than direct file transfer methods for local network transfers
  • Limited customization options compared to some other file transfer tools
  • Relies on public relay servers by default (though self-hosting is possible)

Getting Started

  1. Install croc:
curl https://getcroc.schollz.com | bash
  1. Send a file:
croc send /path/to/file
  1. Receive a file (on another computer):
croc [code-phrase]

Replace [code-phrase] with the code provided by the sender.

Competitor Comparisons

get things from one computer to another, safely

Pros of magic-wormhole

  • Provides end-to-end encryption for secure file transfer
  • Supports transferring multiple files and directories
  • Has a well-documented protocol and API for integration

Cons of magic-wormhole

  • Requires Python installation, which may not be available on all systems
  • Can be more complex to set up and use for non-technical users
  • Limited built-in resume functionality for interrupted transfers

Code Comparison

magic-wormhole:

from wormhole.cli.public_relay import RENDEZVOUS_RELAY
from wormhole.cli.cli import go
go(RENDEZVOUS_RELAY)

croc:

package main

import "github.com/schollz/croc/v9/src/cli"

func main() {
    cli.Run()
}

Both projects aim to provide secure file transfer capabilities, but they differ in implementation and features. magic-wormhole offers a more comprehensive protocol with broader file transfer options, while croc focuses on simplicity and ease of use. The code comparison shows that magic-wormhole is implemented in Python, whereas croc is written in Go, which may impact performance and system compatibility.

🚀 Streaming file transfer over WebTorrent (torrents on the web)

Pros of instant.io

  • Browser-based file sharing without installation
  • Supports streaming of media files
  • Utilizes WebTorrent for efficient peer-to-peer transfers

Cons of instant.io

  • Requires an active internet connection
  • May have slower transfer speeds for large files
  • Limited control over file encryption and security

Code Comparison

instant.io (JavaScript):

client.seed(file, function (torrent) {
  console.log('Client is seeding:', torrent.infoHash)
})

croc (Go):

c := croc.New(options)
err := c.Send(file)
if err != nil {
    log.Fatal(err)
}

Key Differences

  1. Technology: instant.io uses WebTorrent for peer-to-peer transfers, while croc uses its own protocol.
  2. Platform: instant.io is web-based, croc is a command-line tool.
  3. Encryption: croc focuses on secure, encrypted transfers, while instant.io prioritizes ease of use and streaming capabilities.
  4. File size handling: croc is optimized for large file transfers, instant.io may struggle with very large files.
  5. Offline usage: croc can work offline in local networks, instant.io requires an internet connection.

Both tools serve the purpose of file sharing but cater to different use cases and user preferences.

16,387

An IPFS implementation in Go

Pros of kubo

  • Decentralized and distributed file system, enabling global content-addressed storage
  • Supports a wide range of use cases beyond file transfer, including decentralized websites and applications
  • Offers built-in versioning and content integrity verification

Cons of kubo

  • More complex setup and usage compared to croc's simplicity
  • Requires running a node, which can be resource-intensive for casual users
  • May have slower transfer speeds for direct file sharing between two parties

Code comparison

croc:

# Sending a file
croc send file.txt

# Receiving a file
croc 1234-unique-code

kubo:

# Adding a file to IPFS
ipfs add file.txt

# Retrieving a file from IPFS
ipfs get QmHash

Summary

croc is a simple, direct file transfer tool designed for ease of use and quick peer-to-peer file sharing. It excels in simplicity and speed for direct transfers between two parties.

kubo (IPFS) is a more comprehensive distributed file system that offers a wide range of features beyond simple file transfer. It provides a global, content-addressed network for storing and sharing data, making it suitable for various decentralized applications and use cases.

Choose croc for quick and easy file transfers between two parties, and kubo (IPFS) for more complex, distributed file storage and sharing needs in decentralized environments.

66,967

Open Source Continuous File Synchronization

Pros of Syncthing

  • Continuous file synchronization across multiple devices
  • Decentralized architecture with no central server
  • Supports selective sync and versioning of files

Cons of Syncthing

  • More complex setup and configuration
  • Higher resource usage for continuous syncing
  • Requires devices to be online simultaneously for sync

Code Comparison

Syncthing (Go):

func (m *Model) Index(folder string, fs fs.Filesystem, sub string) error {
    m.fmut.RLock()
    cfg := m.folderCfgs[folder]
    m.fmut.RUnlock()

    if cfg.Type == config.FolderTypeReceiveOnly {
        return errors.New("folder is receive-only")
    }
    // ... (additional code)
}

Croc (Go):

func receive(c *websocket.Conn, codephrase string, isLocal bool, done chan struct{}) {
    // initialize receive
    rs := receiveSession{
        conn:       c,
        isLocal:    isLocal,
        codephrase: codephrase,
    }
    // ... (additional code)
}

While both projects are written in Go, Syncthing focuses on continuous synchronization across multiple devices, whereas Croc is designed for simple, one-time file transfers between two points. Syncthing's code reflects its more complex architecture, while Croc's code is more straightforward, aligning with its simpler use case.

A Smart Ethernet Switch for Earth

Pros of ZeroTierOne

  • Creates a secure, encrypted virtual network for multiple devices
  • Offers more comprehensive networking capabilities, including routing and bridging
  • Supports a wider range of platforms and operating systems

Cons of ZeroTierOne

  • More complex setup and configuration process
  • Requires ongoing management and maintenance of the network
  • Higher resource usage due to its comprehensive networking features

Code Comparison

ZeroTierOne (C++):

void Node::processVirtualNetworkFrame(
    uint64_t now,
    const SharedPtr<Network> &network,
    const MAC &from,
    const MAC &to,
    unsigned int etherType,
    const void *data,
    unsigned int len)

Croc (Go):

func (c *Croc) Send(fname string, codephrase string) (err error) {
    c.ImSender = true
    c.Codephrase = codephrase
    c.FileInfo, err = getFileInfo(fname)
    if err != nil {
        return
    }

Summary

ZeroTierOne is a comprehensive virtual networking solution, offering advanced features for creating secure, encrypted networks across multiple devices and platforms. It provides more extensive networking capabilities but requires more setup and ongoing management.

Croc, on the other hand, is a simpler tool focused on secure file transfer between devices. It offers a more straightforward setup process and is lighter on resources, but lacks the advanced networking features of ZeroTierOne.

The choice between the two depends on the specific use case: ZeroTierOne for complex networking needs, and Croc for quick and easy file transfers.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

croc
Version Build Status

This project is supported by GitHub sponsors.

About

croc is a tool that allows any two computers to simply and securely transfer files and folders. AFAIK, croc is the only CLI file-transfer tool that does all of the following:

  • Allows any two computers to transfer data (using a relay)
  • Provides end-to-end encryption (using PAKE)
  • Enables easy cross-platform transfers (Windows, Linux, Mac)
  • Allows multiple file transfers
  • Allows resuming transfers that are interrupted
  • No need for local server or port-forwarding
  • IPv6-first with IPv4 fallback
  • Can use a proxy, like Tor

For more information about croc, see my blog post or read a recent interview I did.

Example

Install

You can download the latest release for your system, or install a release from the command-line:

curl https://getcroc.schollz.com | bash

On macOS

Using Homebrew:

brew install croc

Using MacPorts:

sudo port selfupdate
sudo port install croc

On Windows

You can install the latest release with Scoop, Chocolatey, or Winget:

scoop install croc
choco install croc
winget install schollz.croc

On Unix

You can install the latest release with Nix:

nix-env -i croc

On Alpine Linux

First, install dependencies:

apk add bash coreutils
wget -qO- https://getcroc.schollz.com | bash

On Arch Linux

Install with pacman:

pacman -S croc

On Fedora

Install with dnf:

dnf install croc

On Gentoo

Install with portage:

emerge net-misc/croc

On Termux

Install with pkg:

pkg install croc

On FreeBSD

Install with pkg:

pkg install croc

On Linux, macOS, and Windows via Conda

You can install from conda-forge globally with pixi:

pixi global install croc

Or install into a particular environment with conda:

conda install --channel conda-forge croc

Build from Source

If you prefer, you can install Go and build from source (requires Go 1.22+):

go install github.com/schollz/croc/v10@latest

On Android

There is a 3rd-party F-Droid app available to download.

Usage

To send a file, simply do:

$ croc send [file(s)-or-folder]
Sending 'file-or-folder' (X MB)
Code is: code-phrase

Then, to receive the file (or folder) on another computer, run:

croc code-phrase

The code phrase is used to establish password-authenticated key agreement (PAKE) which generates a secret key for the sender and recipient to use for end-to-end encryption.

Customizations & Options

Using croc on Linux or macOS

On Linux and macOS, the sending and receiving process is slightly different to avoid leaking the secret via the process name. You will need to run croc with the secret as an environment variable. For example, to receive with the secret ***:

CROC_SECRET=*** croc

For single-user systems, the default behavior can be permanently enabled by running:

croc --classic

Custom Code Phrase

You can send with your own code phrase (must be more than 6 characters):

croc send --code [code-phrase] [file(s)-or-folder]

Allow Overwriting Without Prompt

To automatically overwrite files without prompting, use the --overwrite flag:

croc --yes --overwrite <code>

Excluding Folders

To exclude folders from being sent, use the --exclude flag with comma-delimited exclusions:

croc send --exclude "node_modules,.venv" [folder]

Use Pipes - stdin and stdout

You can pipe to croc:

cat [filename] | croc send

To receive the file to stdout, you can use:

croc --yes [code-phrase] > out

Send Text

To send URLs or short text, use:

croc send --text "hello world"

Use a Proxy

You can send files via a proxy by adding --socks5:

croc --socks5 "127.0.0.1:9050" send SOMEFILE

Change Encryption Curve

To choose a different elliptic curve for encryption, use the --curve flag:

croc --curve p521 <codephrase>

Change Hash Algorithm

For faster hashing, use the imohash algorithm:

croc send --hash imohash SOMEFILE

Self-host Relay

You can run your own relay:

croc relay

By default, it uses TCP ports 9009-9013. You can customize the ports (e.g., croc relay --ports 1111,1112), but at least 2 ports are required.

To send files using your relay:

croc --relay "myrelay.example.com:9009" send [filename]

Self-host Relay with Docker

You can also run a relay with Docker:

docker run -d -p 9009-9013:9009-9013 -e CROC_PASS='YOURPASSWORD' schollz/croc

To send files using your custom relay:

croc --pass YOURPASSWORD --relay "myreal.example.com:9009" send [filename]

Acknowledgements

croc has evolved through many iterations, and I am thankful for the contributions! Special thanks to:

And many more!