を使用してzipファイルをダウンロードする必要がありますwget
。現在のディレクトリにダウンロードするには、コマンドラインで実行します:
$ wget https://github.com/.../[myfile].zip
別の別のディレクトリにダウンロードするには、次を追加し-P <Path of download directory>
ます。
$ wget -P [download directory path] https://github.com/.../[myFile].zip
ファイルをダウンロードするように変更したいのです[download path directory]
が、 filename を使用します[myFileName]
。これどうやってするの?
私はすでにこれを試しました:
$ wget -P [download directory path] --output-document=[filename.zip]
https://github.com/.../[myZipFile].zip
これにより、私が選択したファイル名でファイルが現在のディレクトリにダウンロードされます。
最後に、これを NodeJS プロジェクトで使用しspawn
ます。
現在、私はこれを持っています:
var downloader = spawn("wget", ["-P", zipFile, appUrl]);