Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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,623 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.