
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
ember-particle
Advanced tools
ember-particle is an addon for Ember.js providing an injectable service that acts as a wrapper around the Particle API.
ember install ember-particle
ember-particle enables all functions identical to their API as it is just a wrapper.
Complete API docs for all Particle.io methods are available at the JS SDK doc site https://docs.particle.io/reference/javascript/
Login a user with a username and password:
//...
import { inject as service } from '@ember/service';
export default Controller.extend({
particle: service('particle'),
actions: {
loginToParticle(username, password) {
this.get('particle')
.login(username, password)
.then((success) => {
alert('you logged into particle! huzzah!');
})
.catch((error) => {
alert('Something went terribly wrong', error);
});
}
}
});
List devices for a user
//...
import { inject as service } from '@ember/service';
export default Controller.extend({
particle: service('particle'),
devices: this.get('particle').listDevices()
});
Gets all attributes for a device
//...
import { inject as service } from '@ember/service';
export default Controller.extend({
particle: service('particle'),
device: this.get('particle').getDevice('asdf1234')
});
I'm always happy to take on PRs. Here is how to get up and running:
git clone https://github.com/mileszim/ember-particle this repositorycd ember-particleyarn installnpm run lint:hbsnpm 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"ember try:each – Runs the test suite 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
Ember service for the Particle API
The npm package ember-particle receives a total of 2 weekly downloads. As such, ember-particle popularity was classified as not popular.
We found that ember-particle 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.