
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
ember-let is an addon for binding variables to template contexts in Ember. It behaves much like the with helper, but lets you bind an arbitrary number of variables, including standalone values, hashes, and class instances. However, unlike with, the let helper will yield its block even if the bound values are undefined, null, or []. This has the benefit of allowing the user to treat the block values as true variable bindings rather than simply aliases to existing values.
See examples below:
Bind basic values
{{#let "abc" "123" as |first second|}}
<li>{{first}}</li>
<li>{{second}}</li>
{{/let}}
Mix hashes and standalone values
{{#let (hash first="first" second="second") "third" as |hash standalone|}}
<li>{{hash.first}}</li>
<li>{{hash.second}}</li>
<li>{{standalone}}</li>
{{/let}}
Bind a class instance returned from a helper
{{#let (boolean) as |bool|}}
{{bool.value}} - <button onClick={{action bool.toggle}}>toggle</button>
{{/let}}
Inline use Note: requires Ember 2.0+ (ie. does not support 1.13)
{{let greeting=(concat "hello " to)}}
{{greeting}} - <button {{action (action (mut to) "world")}}>Greet the world!</button>
Inline let declarations are in scope until the parent element or block is closed, for example:
{{#if person.isActive}}
<div>
{{let name=person.name}}
<span>{{name}}</span>
</div>
{{!-- The name binding is not accessible here... --}}
{{/if}}
{{!-- ...or here. -- }}
git clone this repositorynpm installbower installember servernpm test (Runs ember try:testall to test your addon against multiple Ember versions)ember testember test --serverember buildFor more information on using ember-cli, visit http://ember-cli.com/.
Please note that this project is released with a Contributor Code of
Conduct. By participating in this project you agree to abide by its
terms, which can be found in the CODE_OF_CONDUCT.md file in this
repository.
FAQs
A helper for binding values to HTMLBars template contexts
We found that ember-let demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.