/down-pag

Pacote npm para baixar HTML de paginas.

Primary LanguageJavaScriptMIT LicenseMIT

Download HTML Pag

pacote npm para baixar HTML de paginas.

Instalação

Execute:

npm i down-pag

ou

npm i https://github.com/DiogoFalqueto/down-pag

Utilização


const downloadHtmlPag = require("down-pag")
const nameFile = "google.html"
const url = "https://www.google.com"

const download = downloadHtmlPag.download(nameFile, url)

download.then(function(){
	console.log("Download file!")
})