@taluoo/node-clone-url
v1.1.1
Published
clone url content to current dir
Readme
Clone url content to some dir
THIS PROJECT IS 【INACTIVE】
This project is not maintained anymore. Please use alternative.
Install
npm install @taluoo/node-clone-url --saveUsage
const {clone} = require('@taluoo/node-clone-url');
async function test() {
let filePath = await clone('https://www.baidu.com/'); // clone(url) return a Promise, which will resolve a file path
console.log(filePath);
}
test();