Skip to content

jeremyBanks/net-ipfs-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

net-ipfs-api v0.3.11 beta

The .NET portable class library (PCL) for the InterPlanetary File System (IPFS) API. Currently a work in progress

This library should be easy to use if you're familiar with the IPFS CLI. Top level commands (eg. ipfs cat, ipfs add) are methods in IpfsClient. Subcommands are methods in the IPFS client's properties named after the subcommands.

ie. ipfs swarm peers becomes ipfs.Swarm.Peers() and ipfs add <file> becomes ipfs.Add(file). Easy!

The only exception is if a valid 'top level' command has subcommands, since C# can't have methods and properties with the same name. ie. ipfs config and ipfs config edit become ipfs.ConfigCommand() and ipfs.Config.Edit().

CLI arguments are required method parameters and CLI options are optional method parameters.

Examples

Adding & reading a file:

using (var ipfs = new IpfsClient())
{
  //Name of the file to add
  string fileName = "test.txt";

  //Wrap our stream in an IpfsStream, so it has a file name.
  IpfsStream inputStream = new IpfsStream(fileName, File.OpenRead(fileName));

  MerkleNode node = await ipfs.Add(inputStream);

  Stream outputStream = await ipfs.Cat(node.Hash);

  using(StreamReader sr = new StreamReader(outputStream));
  {
    string contents = sr.ReadToEnd();

    Console.WriteLine(contents); //Contents of test.txt are printed here!
  }
}

Disconnect from all peers:

using (var ipfs = new IpfsClient())
{
    var peers = await ipfs.Swarm.Peers();
    await ipfs.Swarm.Disconnect(peers);
}

Contributions

Contributions are very welcome. Create a feature branch off develop, make your changes, and raise a pull request back to develop. Unit tests encouraged.

License

MIT license, see LICENSE for details

Thanks

Thanks to @slothbag for spotting/fixing various bugs :)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%