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

clidom

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clidom

Parse a DOM from the command line

  • 0.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Parse a DOM from the command line

Ever wanted to do a one-off scrape of a web page? Tired of writing scraping boilerplate for applications and wish you had a nice UNIX-style command to call to do it for you? Enter clidom!

Installation

npm install -g clidom

Usage

clidom selector [URL] [options]

Selector specification:

selector[::subselector]

clidom extends selector syntax to allow you to not only select elements, but mutate the elements as needed. clidom provides the following syntax for subselectors:

  • innerHtml - Returns the element's inner HTML (default)
  • outerHtml - Returns the element's outer HTML
  • text - Returns the text inside the element, stripping tags
  • [attribute] - Returns the value of the specified attribute

Options

-o, --out-file  File to write JSON output              [default: '-' (stdout)]
-p, --pretty    Pretty JSON output                             [default: true]
-t, --trim      Trim empty results                             [default: true]
-h, --help      Show help

Examples

Output a pretty JSON object of button labels on http://www.google.com:

clidom input[type="submit"]::[value] https://www.google.com

Output:

{
  "input[type=submit]::[value]": [
    {
      "value": "Google Search"
    },
    {
      "value": "I'm Feeling Lucky"
    }
  ]
}

Output a pretty JSON object of Twitter usernames talking about node.js:

clidom 'span.username b' 'https://twitter.com/search?f=realtime&q=node.js'

Output: (will vary over time)

{
  "span.username b": [
    "hashedrock",
    "mashupaward",
    "orangesuzuki",
    "RJ_Hsiao",
    "mongodbExpert",
    "JanilsonPy",
    "npm_tweets",
    "nodenpm",
    "npm_tweets",
    "StrongLoop",
    "DevelopersDojo",
    "adstweetbot",
    "Johnny_Rehab",
    "jramonleon",
    "questionjs",
    "AsadNomanMS",
    "amit_intelli",
    "rekkuuzadx",
    "npm_tweets",
    "adstweetbot"
  ]
}

You can of course use this with any other UNIX application, for instance if we wanted to remove all the wrapping JSON, we could do this:

clidom 'span.username b' 'https://twitter.com/search?f=realtime&q=node.js' | jq '.[] | .[]' | tr -d \"

We'd simply get the strings of the users, e.g.:

hashedrock
mashupaward
orangesuzuki
RJ_Hsiao
mongodbExpert
JanilsonPy
npm_tweets
nodenpm
npm_tweets
StrongLoop
DevelopersDojo
adstweetbot
Johnny_Rehab
jramonleon
questionjs
AsadNomanMS
amit_intelli
rekkuuzadx
npm_tweets
adstweetbot

FAQs

Package last updated on 23 Mar 2015

Did you know?

Socket

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.

Install

Related posts

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