Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

page-data-cli

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

page-data-cli - npm Package Compare versions

Comparing version 0.0.8 to 0.0.9

17

cli.js

@@ -14,3 +14,3 @@ #!/usr/bin/env node

Usage
$ page <command> <url>
$ page <command> <url> <options>

@@ -22,2 +22,5 @@ Command

tls Options
--servername -n, Servername
Examples

@@ -27,3 +30,7 @@ $ page state http:\/\/example.com

$ page meta http:\/\/example.com
`);
`, {
alias: {
n: 'servername'
}
});

@@ -134,3 +141,7 @@ const command = cli.input[0],

case 'tls':
page.tls(url)
let options = {}
if (cli.flags['servername']) {
options['servername'] = cli.flags['servername']
}
page.tls(url, options)
.then(data => {

@@ -137,0 +148,0 @@ tlsStout(data);

2

package.json
{
"name": "page-data-cli",
"version": "0.0.8",
"version": "0.0.9",
"description": "simple page data get client tool cli",

@@ -5,0 +5,0 @@ "main": "cli.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc