0

I'm building a blockchain-themed web browser in a C# .NET Windows Form Application and want to allow users to view sites using the dat:// protocol. I have found several repositories online but none of them seem to be for C# or close to what I want.

I've already tried using the Dat P2P Protocol Firefox addon but the setup was too difficult and I'd have to figure out how to add extensions to the browser in the first place.

ProgrammingLlama
  • 36,677
  • 7
  • 67
  • 86
Peacock
  • 302
  • 1
  • 13

1 Answers1

1

Currently there's only one implementation of Dat, which is built for NodeJS. There's a rust implementation being developed as well.

Paul Frazee
  • 243
  • 1
  • 4
  • Thank you for your response. Is there any way that I could use Rust to work with the GeckoFx browser engine in order to run dat protocol-based websites? – Peacock Jan 29 '19 at 04:51
  • Sorry, I'm not familiar enough with those stacks to answer. – Paul Frazee Feb 01 '19 at 16:42