Giter Site home page Giter Site logo

fullstackforger / captureweb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from darul75/captureweb

0.0 2.0 0.0 1.87 MB

:melon: NodeJS module for capturing entire web with screenshots

Home Page: http://darul-demo.herokuapp.com/captureweb

License: MIT License

JavaScript 100.00%

captureweb's Introduction

Captureweb NPM version Build Status Total views Bitdeli Badge

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

capture web screenshot

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=captureweb
  • mime 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

NPM

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.

captureweb's People

Contributors

darul75 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.