
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.
seq-logging
Advanced tools
This library makes it easy to support Seq from Node.js logging libraries, including Winston via winston-seq, Pino via
pino-seq, Bunyan viabunyan-seq, and Ts.ED logger via @tsed/logger-seq. It is not expected that applications will interact directly with this package.
import { Logger } from 'seq-logging';
Using seq-logging in a browser context is the same, except the module to import is seq-logging/browser.
import { Logger } from 'seq-logging/browser';
A Logger is configured with serverUrl, and optionally apiKey as well as event and batch size limits.
requestTimeout can be used to adjust timeout for stalled connections, default: 30s.
import process from 'process';
import { Logger } from 'seq-logging';
const logger = new Logger({ serverUrl: 'http://localhost:5341' });
logger.emit({
timestamp: new Date(),
level: 'Information',
messageTemplate: 'Hello for the {n}th time, {user}!',
properties: {
user: process.env.USERNAME,
n: 20
}
});
logger.close();
Events are sent using the emit() method, that internally performs asynchronous batching based on payload size.
When the application exits, close() ensures all buffered events are written. This can be done at any time otherwise using the flush() method. Both of these methods return promises indicating completion.
FAQs
Sends structured log events to the Seq HTTP ingestion API
The npm package seq-logging receives a total of 62,109 weekly downloads. As such, seq-logging popularity was classified as popular.
We found that seq-logging demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.