Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

beanstalkd-protocol

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beanstalkd-protocol

Beanstalkd protocol parser for Node.js/Javascript

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
709
decreased by-25.91%
Maintainers
1
Weekly downloads
 
Created
Source

Beanstalkd protocol parser for Node.js/Javascript

npm install --save beanstalkd-protocol

Examples

See unit tests

import Protocol from 'beanstalkd-protocol';

API

protocol.parseCommand(buffer)

Parses a Buffer for a consumer/worker command.

Buffer can be a partial chunk of a stream, the method will return values based on whether or not it has enough information to parse the full command yet.

  • buffer Buffer to parse. Can be a partial chunk of a stream.
  • Returns: [null, {command, args}] returned if command was the only thing in the chunk
  • Returns: [Buffer, null] returns passed chunk if no command was found or not enough data was available to fully parse command
  • Returns: [Buffer, {command, args}] returns remaining part of chunk + found command if chunk is larger than command

protocol.parseReply(buffer)

Parses a Buffer for a beanstalkd server reply.

Buffer can be a partial chunk of a stream, the method will return values based on whether or not it has enough information to parse the full command yet.

  • buffer Buffer to parse. Can be a partial chunk of a stream.
  • Returns: [null, {reply, args}] returned if reply was the only thing in the chunk
  • Returns: [Buffer, null] returns passed chunk if no reply was found or not enough data was available to fully parse reply
  • Returns: [Buffer, {reply, args}] returns remaining part of chunk + found reply if chunk is larger than reply
protocol.reset()

Removes all custom types, commands & replies

Keywords

FAQs

Package last updated on 26 Aug 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc