
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
gnd-dropdown
Advanced tools
A dropdown (as html select) component for Gnd.
It supports binding a collection to the options and a model to the current selection.
npm install gnd-dropdown
In a nodejs server:
var Dropdrown = require('gnd-dropdown');
// Dropdown.build points to the directory with the files to server
// using connect / express
app.use(static(path.join(__dirname, Dropdown.build)))
In the client:
// simple collection
var dropdown = new Dropdown(myCollection, {
selectedId: mySelectedId,
parent: '#dropdown'
});
dropdown.render();
// binding the selected item id to some model property
var dropdown = new Dropdown(myCollection, {
selection: {model: myModel, key: 'itemId'},
parent: '#dropdown'
});
dropdown.render();
// Listen to changes
dropdown.on('selected:', function(item){
console.log(item);
});
// Do something special when last element is deleted
dropdown.on('lastRemoved:', function(item){
// ---
})
FAQs
A Gnd dropdown component
We found that gnd-dropdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

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.