
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@trigo/atrix-redis
Advanced tools
atrix redis plugin automaticaly sets up the connection to your redis server using ioredis library
atrix-redis < 1.0.0 works with atrix < 6.0.0
atrix-redis >= 1.0.0 works with atrix >= 6.0.0
# install atrix framework
npm install -S @trigo/atrix
# install atrix-redis plugin
npm install -S @trigo/atrix-redis
# No need to install redis itself!
module.exports = (req, reply, service) => async {
// access model class for connection "m1"
const redisClient = service.dataConnections.m1.client;
await redisClient.set(key, value);
...
}
'use strict';
const atrix = require('@trigo/atrix');
const path = require('path');
atrix.addService({
name: 'redis',
endpoints: {
http: {
// declare port to bind
port: 3007,
// the directory containing the handler files
handlerDir: `${__dirname}/handlers`,
},
},
// declare a dataSource config section
dataSource: {
// name of the data source
m1: {
// type of data connection
type: 'redis',
// connection configuration
config: {
// redis host
host: 'localhost',
// redis port
port: 6379,
// optional: password
password: 'redis-secret-password',
// optional: db to user
db: 1
},
},
m2: {
type: 'redis',
config: {
host: 'redis',
port: 6379,
},
},
},
});
// start service.
// This will wait for the mongo connection to be available before starting up.
// When conection(s) is lost after initial startup the plugin automatically tries to reconnect
svc.start();
Run service with node index.js
FAQs
Redis integration into atrix microservice framework
The npm package @trigo/atrix-redis receives a total of 0 weekly downloads. As such, @trigo/atrix-redis popularity was classified as not popular.
We found that @trigo/atrix-redis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.