RangerMauve / hypercore-fetch

Implementation of Fetch that uses the Hyper SDK for loading p2p content
MIT License
36 stars 12 forks source link

What characters may be used in a namespace petname? #35

Closed josephmturner closed 1 year ago

RangerMauve commented 1 year ago

Once we release the new version any characters that can be decoded by the querystring parameter can be used, so pretty much any unicode characters.

At the moment, only characters that can go into the hostname portion of a URL, and excluding . (which triggers a DNS lookup).

Generally, I'd suggest sticking to letters/numbers with underscores.

josephmturner commented 1 year ago

Thank you!!