
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.