*****
fs to read and bencode to decode the .torrent file; download to handle downloading the torrent pieces
import { openTorrent } from './src/utils/torrent-handler.js';
import { download } from './src/utils/download.js';
Decodes the torrent, calls download
const torrent = openTorrent(process.argv[2]));
download(torrent);