
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-async-let
Advanced tools
Alias the result of an async call to a new name
ember install ember-async-let
{{async-let}}A tagless component that prevents a block from rendering until the passed-in promise resolves
{{#async-let on=(async-property property) as |resolvedData|}}
<div>{{resolvedData}}</div>
{{/async-let}}
const context = {
methodName(param1, param2) {
return Promise.resolve('foobar');
}
};
{{#async-let on=(async-function context 'methodName' param1AsVariable 'param2-as-string') as |resolvedData|}}
<div>{{resolvedData}}</div>
{{/async-let}}
This will show a specified component as a placeholder until the async call resolves
{{#async-let on=(async-property property) placeholder=(component 'my-spinner') as |resolvedData|}}
<div>{{resolvedData}}</div>
{{/async-let}}
git clone <repository-url>cd ember-async-letnpm installnpm run lint:jsnpm run lint:js -- --fixember test – Runs the test suite on the current Ember versionember test --server – Runs the test suite in "watch mode"npm test – Runs ember try:each to test your addon against multiple Ember versionsember serveFor more information on using ember-cli, visit https://ember-cli.com/.
This project is licensed under the MIT License.
FAQs
Alias the result of an async call to a new name
We found that ember-async-let 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.