5 Repos
Wrapping output destinations in writable streams to allow flexible redirection of data.
Distinct from Stream-Based Data Pipelines: Candidates focus on data pipelines or network streaming; this is about the Node.js Writable stream interface for logging.
Explore 5 awesome GitHub repositories matching software engineering & architecture · Writable Stream Integration. Refine with filters or upvote what's useful.
Winston is a versatile logging library for Node.js designed to record system events and metadata. It functions as a multi-transport log manager that routes data to various destinations and a structured log formatter that transforms entries into JSON or plain text. The project is distinguished by its pluggable transport architecture, which decouples the logging interface from delivery mechanisms. This allows for the creation of custom transport extensions and the use of hierarchical logger instances to inherit configurations while attaching persistent metadata to downstream messages. The libr
Wraps log outputs in writable streams to allow seamless redirection of data to files, consoles, or network sockets.
node-fluent-ffmpeg ist ein Node.js-Wrapper für FFmpeg, der eine flüssige Schnittstelle zur Ausführung von Medienbefehlen und zur Dateiverarbeitung bietet. Er fungiert als Prozessmanager, der den Lebenszyklus externer FFmpeg-Binärdateien handhabt und programmatisches Medien-Transcoding, Video-Thumbnail-Generierung und Metadaten-Extraktion via ffprobe ermöglicht. Die Bibliothek zeichnet sich durch einen Befehls-Builder aus, der JavaScript-Methodenaufrufe in Befehlszeilenargumente übersetzt. Sie bietet ereignisgesteuerte Fortschrittsüberwachung zur Verfolgung verarbeiteter Frames und Durchsatz sowie die Möglichkeit, verarbeitete Mediendaten direkt an beschreibbare Streams für die Echtzeit-Handhabung weiterzuleiten. Das Projekt deckt ein breites Spektrum an Medienverarbeitungsfunktionen ab, einschließlich Kodierungskonfiguration für Audio- und Videoeigenschaften, komplexe Filtergraph-Definitionen für visuelle und Audio-Effekte sowie Eingabeverwaltung zum Zusammenführen mehrerer Quellen. Es enthält zudem Werkzeuge zur Untersuchung von Mediencontainern und Streams, um technische Metadaten abzurufen.
Routes processed media data directly to Node.js writable streams for real-time handling.
Morgan ist eine Node.js-HTTP-Logging-Middleware, die darauf ausgelegt ist, eingehende Anfragen und ausgehende Antworten aufzuzeichnen. Sie erfasst Request-Metadaten und Zeitmessungen, um API-Request-Auditing und Server-Performance-Überwachung zu erleichtern. Das Projekt nutzt tokenbasierte String-Interpolation und benutzerdefinierte Log-Token, um spezifische Eigenschaften aus HTTP-Objekten zu extrahieren. Es unterstützt Multi-Destination-Logging durch das Routing formatierter Log-Strings an verschiedene beschreibbare Streams und verwendet Log-Output-Sanitisierung, um Steuerzeichen zu maskieren. Zusätzliche Funktionen umfassen prädikatbasiertes Log-Filtern, um Einträge bedingt auszulassen, sowie die Fähigkeit, bei Erhalt einer Anfrage sofortige Log-Zeitmessungen auszulösen.
Routes formatted log messages to any Node.js writable stream, including the console and file system.
Formidable is a streaming multipart form parser and file upload handler for Node.js. It provides the utility to process incoming HTTP requests containing a mix of text fields and files, converting them into structured data. The project is designed as a multipart data streamer that can pipe incoming uploads directly to the local filesystem or cloud storage providers. It includes a cloud storage upload bridge to route streams to services such as AWS S3, Azure, or GCP without requiring intermediate local disk storage. The tool incorporates server-side file validation and security controls, incl
Redirects file data to custom writable streams for direct uploads to cloud providers or disks.
This project is a technical study and analysis guide focused on the internal architecture of Node.js. It provides an in-depth examination of the runtime, focusing on how the engine manages memory handles, executes asynchronous operations, and implements core module logic. The guide specifically analyzes the integration of native C++ classes and functions into JavaScript and documents the behavior of the libuv event loop. It includes detailed references for optimizing performance by identifying V8 compiler bailouts and profiling execution to improve resource efficiency. The material covers a
Deconstructs the source-level implementation and creation of custom readable and writable streams.