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

queried

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

queried

Query selector CSS4 +

  • 1.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
24
decreased by-68%
Maintainers
1
Weekly downloads
 
Created
Source

queried Build Status Code Climate

Queried is tiny normalized query selector. It just wraps native querySelector and provides hooks for custom pseudos. Basically it polyfills CSS4 pseudos, but might be used to implement other pseudos, like jQuery ones or query-relative.

  1. Polyfills CSS3 & CSS4 pseudos: :has, :scope, :root, :matches.

  2. Fixes immediate children selector > *, which is unavailable in query.

  3. Returns Array instead of NodeList in multiple query, so you can do forEach on result.

  4. Accepts other elements as a selector, for example, to find within a set.

  5. Fully compliant with query.

Use it if you need CSS4 pseudos or other specific pseudos.

Otherwise take a look at analogs:

  • sel — a more complete CSS4 selector, lacks of mapping pseudos and unable to handle nested pseudos like :not(:has(a))
  • query-component - a tiny wrapper over native querySelector with fallback to engines like qwery etc.
  • dom-select
  • qwery
  • domy-element
  • query-relative — extension to queried with relative pseudos like :parent, :closest(), :next(), :prev().
  • jquery

$ npm install queried

var q = require('queried');

//select each div having `a` with `span` inside as immediate children.
q.all('div:has(a:has(span))');

API

Fully compliant with query-component.

MethodDescription
query(selector, el=document)Query a single element by selector
query.all(selector, el=document)Query list of elements by selector
query.registerFilter(name, filterFn)Register a filtering pseudo
query.registerMapper(name, mapperFn)Register a mapping pseudo
query.documentDefault document to use as fallback. Set it up, for exampl, as q.document = require('min-document'), if you need custom DOM.

NPM

FAQs

Package last updated on 31 Jan 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