![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
hands-free-chrome
Advanced tools
Headless Chrome utilities.
Current supported features:
Chrome version > 59.x must be installed.
Node.js version > 8.0.0
$ npm install hands-free-chrome
then:
const HandsfreeChrome = require('hands-free-chrome');
let chrome = new HandsfreeChrome();
//capture a screenshot as png
chrome.captureScreenshot('<A VALID WEB PAGE URL>')
.then(name => console.log(`Created file: ${name}.png`))
.catch(err => console.log(err));
new HandsfreeChrome( [options] )
Constructor.
Instantiate a new HandsFreeChrome.
options
is an optional object with the following properties:
port
- integer, Headless Chrome listening port, default: 9999
;autoSelectChrome
- boolean, enable/disable autoselection of installed Chrome, default: true
(recommended);chromeFlags
- array of strings, Headless Chrome configuration, default: ['--disable-gpu', '--headless']
;HandsfreeChrome # captureScreenshot(url, outputType, metrics, [thumbnail])
Capture a screenshot of a web page and create image files.
Params:
url
- string, a valid web page URL;outputType
- (optional) string, specifies the output file type, can be: png
(default), pdf
or both
;metrics
- object, screen metric properties, defaults to DesktopScreenMetrics
, see the dedicated section below;thumbnail
- (optional) object { width: <px>, height: <px> }
, if used produces a resized png of the screenshot of the specified dimensions. Works only if outputType
is png
.HandsfreeChrome # captureScreenshotAsStream(url, outputType, metrics)
Capture a screenshot of a web page and return a data readable stream.
Params:
url
- string, a valid web page URL;outputType
- (optional) string, specifies the image file type, can be: png
(default) or pdf
;metrics
- object, screen metric properties, defaults to DesktopScreenMetrics
, see the dedicated section below.Metrics Object specifies some configuration options for Headless Chrome, like the browser window size, mobile emulation and so on. See Chrome DevTools Protocol page for more info.
Supported params are:
width: number;
height: number;
deviceScaleFactor: (optional) number;
mobile: (optional) boolean;
fitWindow: (optional) boolean;
If metrics
param is not specified or undefined in the above methods calls, then it defaults to: DesktopScreenMetrics
, set as follows:
{
width: 1920,
height: 1080,
deviceScaleFactor: 0,
mobile: false,
fitWindow: false
}
A Web API Server is now included in the package in order to expose the lib as Microservice.
After installing the npm package, running:
$ node ./node_modules/hands-free-chrome/dist/api
it starts a HTTP server at localhost
, default port: 8000
.
To start the API server listening at a different port, just set the PORT
environment variable.
To start the underlying Headless Chrome instance at a different port, set the CHROME_PORT
environment variable (default is 9222
).
Example:
$ PORT=8080 node ./node_modules/hands-free-chrome/dist/api
POST /screenshots/actions/capture
Sends a request to capture a screenshot.
It returns a response with a base64 encoded stream body with Content-Type
equal to image/png
or application/pdf
.
POST body must be a JSON object with the following properties:
url
: string, complete URL of the page to capture;type
: (Optional) string, image type for the requested screenshot: png
or pdf
(default is png
);Example:
{
"url": "https://en.wikipedia.org/wiki/Node.js",
"type": "png"
}
Copyright (c) 2017 Vivocha S.p.A.
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.
FAQs
Headless Chrome utilities
The npm package hands-free-chrome receives a total of 0 weekly downloads. As such, hands-free-chrome popularity was classified as not popular.
We found that hands-free-chrome demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.