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.
ember-invoke
Advanced tools
EmberJS helper to invoke methods on a given context such as components or controllers.
ember install ember-invoke
{{invoke this 'methodName' 'any' 'number' 'of' 'args'}}
{{!-- OR --}}
{{some-component prop=(invoke this 'methodName' 'any' 'number' 'of' 'args')}}
// component/restaurant.js
import Component from '@ember/component';
export default Component.extend({
people: [{
first: 'Bob',
last: 'Smith',
age: 43
}, {
first: 'Jen',
last: 'Doe',
age: 19
}, {
first: 'Bill',
last: 'Foobar'
age: 74
}],
canDrink(age) {
return age >= 21;
}
})
{{!-- templates/component/restaurant.hbs --}}
{{#each people as |person|}}
<h5>{{person.first}} {{person.last}}</h5>
{{!--
The only way you could make this work would be to create a
`can-drink` helper that you would call like so:
(can-drink person.age)
However, that logic might not make sense outside of the scope of
this component. Also, many times the logic is simple (like in this
example) and creating a whole separate helper file is over kill.
This is where the invoke helper comes in. Now you can simply `invoke`
any method on a give context and it will be called with the arguments
that are passed in.
--}}
{{#if (invoke this 'canDrink' person.age)}}
<p>is of legal drinking age</p>
{{else}}
<p>is <b>NOT</b> of legal drinking age</p>
{{/if}}
{{/each}}
FAQs
Invoke methods from within handlebar templates
We found that ember-invoke 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
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.