
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-lifecycle-component
Advanced tools
A component with additional lifecycles for times when you may need need a template.
For situations where you don't need a template.
The LifeCycleComponent has the same interface as @glimmer/component, but with some additional hooks.
Generally, you do not need this. Nearly all side-effecting code can be represented as computed/tracked properties and regular getters while causing changes via the functions that would have started the side-effect anyway.
All the hooks available for use are:
ember install ember-lifecycle-component
More examples here, in the tests
import { LifeCycleComponent } from 'ember-lifecycle-component';
import THREE from 'three';
let geometry = new THREE.BoxGeometry( 2, 2, 2 );
let material = new THREE.MeshNormalMaterial();
export default class SceneBoxComponent extends LifeCycleComponent {
constructor(owner, args) {
super(owner, args);
this.mesh = new THREE.Mesh(geometry, material);
let { rx, ry, rz } = this.args;
this.#updateRotation(rx, ry, rz);
this.mesh.position.set(0, 0, 0);
args.scene.add(this.mesh);
}
didUpdate() {
let { rx, ry, rz } = this.args;
this.#updateRotation({ rx, ry, rz });
}
willDestroy() {
this.args.scene.remove(this.mesh);
}
#updateRotation({ rx, ry, rz }) {
this.mesh.rotation.set(rx, ry, rz);
}
}
See the Contributing guide for details.
This project is licensed under the MIT License.
FAQs
A component with additional lifecycles for times when you may need need a template.
We found that ember-lifecycle-component 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.