Socket
Socket
Sign inDemoInstall

cresper

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cresper

A parser for RESP (REdis Serialization Protocol) which purely using C++ addon


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

cresper

js-standard-style

A parser for RESP (REdis Serialization Protocol) which purely using C++ addon.

Install

npm install cresper

Usage

'use strict'
const Resper = require('cresper')

let resper = new Resper()

resper.decode(resper.encodeArray([
  resper.encodeInt(1),
  resper.encodeString('str'),
  resper.encodeNullArray(),
  resper.encodeError(new Error('heheda'))
]))

resper.encodeRequestArray(['LLEN', 'mylist'])

API

Class: Resper

Method: encodeString(str)

Encode str to RESP buffer.

Method: encodeError(err)

Encode err to RESP buffer.

Method: encodeInt(int)

Encode int to RESP buffer.

Method: encodeBulkString(bulk)

Encode bluk to RESP buffer, bluk should be a String.

Method: encodeNull()

Get the RESP Null buffer.

Method: encodeNullArray()

Get the RESP NullArray buffer.

Method: encodeArray(arr)

Encode arr to RESP buffer, each element in arr should be an instance of buffer.

Method: encodeRequestArray(requestArr)

Encode requestArr to RESP request buffer, each element in requestArr should be a string.

resper.encodeRequestArray(['LLEN', 'mylist'])

Method: decode(encodedBuffer)

Decode RESP buffer to real value.

Resper.decode(Resper.encodeInt(998)) // 998

FAQs

Package last updated on 24 Jul 2016

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