
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
ember-wormhole-action
Advanced tools
Nearly always state in an Ember application should be managed by following the 'data down, actions up' paradigm. However there are some rare cases where it is reasonable to send actions sideways. Ember wormhole action provides provides a clean interface for doing so.
ember install ember-wormhole-action
mixin:wormhole-actionablehelper:wormhole-action to send an action sidewaysmixin:wormhole-actionableTo make an action on a component wormhole actionable (1) mixin the
wormhole-actionable mixin and (2) define a wormholeActionableActions
property on the class.
wormholeActionableActions should be an array of POJO's each of which
defines action and name properties.
action is the action defined in the componentname is what becomes 'wormhole actionable' and should be less generically
named than actionimport Ember from 'ember';
import WormholeActionable from 'ember-wormhole-action/mixins/wormhole-actionable';
export default Ember.Component.extend(WormholeActionable, {
wormholeActionableActions: [
{action: 'open', name: 'openDrawer'}
],
actions: {
open(item) {
// ...
}
}
});
helper:wormhole-actionUse the helper to call a wormhole actionable action. Note that
wormhole-action will accept params to pass to the action.
<button onClick={{wormhole-action 'openDrawer' item}}>Open</button>
FAQs
An Ember Addon for sending actions sideways.
We found that ember-wormhole-action 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.