express-mirror
v1.0.2
Published
An NPM package that lets you reflect existing webpages onto your own page.
Downloads
4
Readme
express-mirror
An NPM package that lets you reflect existing webpages onto your own page.
Install
$ npm install express-mirrorInstall globally
$ npm install express-mirror -gInstall as project:
$ npm install express-mirror --saveExample
$ npm install express-mirror --savelet mirror = require("express-mirror");app.get("/", function(req, res) {
mirror(res, "https://example.com");
});
app.listen(8080);Go to http://localhost:8080, and you'll see https://example.com on your page!
License
MIT
