
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Qwery is a modern selector engine built on top of querySelectorAll
giving you practical utility.
As of version 4.0
, qwery
no longer supports IE6 - IE8. If your application still requires this level of support, please see the final 3.x
release.
Each query can optionally pass in a context
qwery('div', node); // existing DOM node or...
qwery('div', '#foo'); // another query
npm install
make
open tests/index.html
Qwery is the recommended selector engine for Ender. If you don't have Ender, install it, and don't ever look back.
npm install ender -g
Include qwery
into your package.json
{
"dependencies": {
"qwery": "x.x.x"
}
}
// the context finder - find all p elements descended from a div element
$('div').find('p')
// join one set with another
$('div').and('p') // equal to $('div,p')
In most cases, if you're hunting for a selector engine, you probably want to pair Qwery with a DOM module. In that case qwery pairs quite nicely with Bonzo (a DOM util) and Bean (an event util). Add them to your Ender installation as such:
ender build qwery bean bonzo
Then write code like a boss:
$('<p>hello world</p>')
.css({
color: 'red',
background: 'white'
})
.after('√')
.bind({
'click.button': function () {
$(this).hide().unbind('click.button')
}
})
.appendTo('body')
Are you using this library in production? Consider leaving a tip to show your appreciation.
FAQs
blazing fast CSS3 query selector engine
The npm package qwery receives a total of 2,604 weekly downloads. As such, qwery popularity was classified as popular.
We found that qwery demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.