
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
@namics/remlog-transports
Advanced tools
Transports are the way where your logs will be stored, for example temporary in the console, in a logfile or on a database etc. There are currently 2 transports supported:
Transports are the way where your logs will be stored, for example temporary in the console, in a logfile or on a database etc. There are currently 2 transports supported:
const { FileSystem, Console, MongoDB } = require('@namics/remlog-transports');
@namics/remlog-transports/Console)@namics/remlog-transports/FileSystem)You can simply add the transports to your server by the constructor or CLI argument:
new require('@namics/remlog-server').Server({
transport: `@namics/remlog-transports/FileSystem`,
});
remlog server -t @namics/remlog-transports/Console
const { Transport } = require('@namics/remlog-transports');
const connection = require('mysql').createConnection({
host: 'localhost',
user: 'me',
password: 'secret',
database: 'my_db',
});
class CustomTransport extends Transport {
/**
* This method will be responsible for the trace of logs
*
* @param {Object} payload The log payload
* @param {Function} resolve Will resolve the trace and save it to the internal file
*/
trace(payload, resolve) {
connection.connect();
connection.query('INSERT INTO LOGS ...');
connection.end();
resolve();
}
}
Review the Changelog
FAQs
Transports are the way where your logs will be stored, for example temporary in the console, in a logfile or on a database etc. There are currently 2 transports supported:
The npm package @namics/remlog-transports receives a total of 12 weekly downloads. As such, @namics/remlog-transports popularity was classified as not popular.
We found that @namics/remlog-transports demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.