
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
jquery-bindings
Advanced tools
Simple two-way data binding using proxies and requestIdleCallback
Inspired by a pen, simple data bindings that rely on Proxies (ensure this is polyfilled for older browsers) and requestIdleCallback (Shimmed if not available).
Using cdn:
<script src="https://cdn.rawgit.com/tiaanduplessis/jquery-bindings/master/jquery-bindings.min.js"></script>
<!-- Or -->
<script src="https://unpkg.com/jquery-bindings/jquery-bindings.min.js"></script>
$ npm install jquery-bindings
# OR
$ yarn add jquery-bindings
Create html with data-bind attributes:
<p>
<label>First Name:</label>
<input type="text" data-bind="firstName" />
<label>Last Name:<label/>
<input type="text" data-bind="lastName" />
<br> Age:
<input type="number" data-bind="age">
</p>
create a initial object and initialize $.bindings
var obj = {
firstName: 'Tiaan',
lastName: 'du Plessis'
}
var bindings = $.bindings(obj)
// bindings variable can be updated directly and trigger DOM updates
// DOM updates will trigger updates in the bindings variable
bindings.firstName = 'Dupie'
// New properties can be added as long as the associated data-bind attribute exists
bindings.age = 24
See the example for more information.
$.bindings(object, options)data-bindContributions are welcome!
git checkout -b my-new-featuregit commit -am 'Add some feature'git push origin my-new-featureOr open up a issue.
Licensed under the MIT License.
FAQs
Simple two-way data binding using proxies and requestIdleCallback
The npm package jquery-bindings receives a total of 19 weekly downloads. As such, jquery-bindings popularity was classified as not popular.
We found that jquery-bindings demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.