frame-stream
Advanced tools
Comparing version 2.0.3 to 2.1.0
{ | ||
"name": "frame-stream", | ||
"version": "2.0.3", | ||
"version": "2.1.0", | ||
"description": "Length-prefixed message framing for Node.js streams.", | ||
@@ -12,2 +12,3 @@ "keywords": [ | ||
"main": "lib/", | ||
"typings": "typings/index.d.ts", | ||
"scripts": { | ||
@@ -27,6 +28,6 @@ "test": "gulp test" | ||
"devDependencies": { | ||
"eslint": "^7.6.0", | ||
"eslint": "^7.29.0", | ||
"gulp": "^4.0.2", | ||
"gulp-eslint": "^6.0.0", | ||
"gulp-mocha": "^7.0.2" | ||
"gulp-mocha": "^8.0.0" | ||
}, | ||
@@ -33,0 +34,0 @@ "engines": { |
@@ -5,3 +5,3 @@ # frame-stream | ||
[![NPM][npm]](https://npmjs.com/package/frame-stream) [![Build Status][travis]](https://travis-ci.org/davedoesdev/frame-stream) | ||
[![NPM][npm]](https://npmjs.com/package/frame-stream) [![CI status][ci]](https://github.com/davedoesdev/frame-stream/actions) | ||
@@ -70,2 +70,2 @@ Some protocols, e.g. TCP, do not not guarantee to keep message boundaries. One common approach to distinguish such messages is *Length Prefixing*, which prepends each message with its length. `frame-stream` accepts a stream with such length-prefixed messages and returns each frame on its own. | ||
[npm]: http://img.shields.io/npm/v/frame-stream.svg?style=flat-square | ||
[travis]: http://img.shields.io/travis/davedoesdev/frame-stream.svg?style=flat-square | ||
[ci]: https://github.com/davedoesdev/frame-stream/actions/workflows/ci.yml/badge.svg |
12377
8
200