1.0.0 • Published 1 year ago

fbsave v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

features:• no need apikey• auto save file• simple and easy• built in donwloader• HD quality

installation

npm i fbsave

usages

savedownloader with file format

getauto download uses fbsave.mp4 format

linkmanual raw link for request

calling a variable

const fb = require("fbsave");

save example:

fb.save({
  url: "video url",
  file: "example.mp4"
})

the output will depend on your file name you can also render it on different format mp4 mp3 mp4a etc. the file directory gonna save depends on you if you want to save it on your folder just use

file: __dirname + "/cache/example.mp4"

get example:

fb.get("video url")

the output will automatically downloaded as fbsave.mp4 the file format is only mp4 and the save path is only on your home runner

link example:

fb.link("video url").then(res => {
  console.log(res);
})

this method is for request link only in other words the output is raw downloader link

LeiamNash