captureweb
v0.0.8
Published
NodeJS module for capturing entire web with screenshots
Downloads
10
Maintainers
Readme
Captureweb
Capture websites with screenshot or pdf.
- By default a small node server handle request and conversion, default port 5001
- By default another small node server is started for a first test, default port 5002, maybe I remove it later ;)
But you do not have to worry about it.
Preview
Demo
http://darul-demo.herokuapp.com/captureweb
Installation
Using npm:
npm install captureweb
Usage
var captureweb = require('captureweb');
captureweb.capture({
url: 'https://github.com',
mime: 'image/png',
viewportSize: { w: 1280, h: 1024 },
viewportRect: { top: 20, left: 20, w: 400, h:300 },
userAgent:'Mozilla/5.0 (Macintosh; Intel Mac............',
}, function(err, stream) {
// process err
// handle stream, by instance with server response
res.writeHead(200, {'Content-Type' : mime});
stream.pipe(res);
// or with basic event
var data = '';
stream.on('data', function(d){
data += d;
});
stream.on('end', function(){
});
// ...
});
// MORE APIs
// STOP SERVER
captureweb.stopServer();
// BY DEFAULT STARTED
captureweb.startServer(5001);
Parameters
url
site to capture https://www.google.fr/#q=capturewebmime
mime type 'image/jpeg', 'image/gif', 'image/png', 'application/pdf'viewportSize
(optional) viewport resolution, embedded json ex: {w: 200, h: 222}viewportRect
(optional) clip rectangle area, embedded json ex: { top: 20, left: 20, w: 400, h:300 }userAgent
(optional) set device User-Agent
- MORE COMING SOON
Build
You can run the tests by running
npm install
or
npm test
assuming you already have grunt
installed, otherwise you also need to do:
npm install -g grunt-cli
Metrics
License
The MIT License (MIT)
Copyright (c) 2013 Julien Valéry
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.