Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 495 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 495 Bytes

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!")
})