Wanted to send a friend a little message.
> Open up @agregore
> Open the Docs for bt-fetch https://github.com/RangerMauve/bt-fetch
> Open a new window (Ctrl+N)
> For get how the hell to make a torrent
> Open the unit tests to see an example: https://github.com/RangerMauve/bt-fetch/blob/default/test.js#L30
> Open Devtoosl (ctrl+shift+i)
> It's a post Request
```
r = await fetch('bittorrent://localhost', {
method: 'post',
})
```
(cont)
> Body is a `FormData`
```
f = new FormData()
f.append('file', new Blob(["<h1>Hello There! :)</h1>"]), 'index.html')
```
> Add it to the request
> OH FUCK I broke the torrent thing and didn't have tests (guess I'll have to try again another day :P)