1.1.0 • Published 5 years ago

web-archive v1.1.0

Weekly downloads
3
License
ISC
Repository
-
Last release
5 years ago

node-archive.is

A wrapper to retrieve an archive.is archive for webpage given an URL

Usage example

const archive = require("web-archive");
archive.save("https://www.npmjs.com/package/web-archive")
    .catch(error=>console.error(error))
    .then(url=> {
        console.log(`The generated archive can be reached at ${url}`);
    });