cdn/other/torrent-create.mjs
2023-04-28 11:39:02 +02:00

12 lines
262 B
JavaScript

import createTorrent from 'create-torrent'
import fs from 'fs'
var opts = ""
createTorrent('./', [opts], (err, torrent) => {
if (!err) {
// `torrent` is a Buffer with the contents of the new .torrent file
fs.writeFile('site.torrent', torrent)
}
})