-
@litert/redis
is a Redis client library developed entirely in TypeScript, for NodeJS.All asynchronous operations are based on
Promise
, and it supports transactions and messaging.Features
- Support read/write separation.
- Support pipeline.
- Support multi and exec.
- Support subscribe and publish.
Installation
1npm install @litert/redis@^3.0.2
v3.0.2 CHANGES
- fix(command): Incorrect preprocessing of arguments for
SREM
command. - feat(command): Added basic supports for
ZADD
,ZREM
,ZRANGE
commands. - fix(docs): Fixed the links to the command documents.
- build(test): Initialized test flows.
Contributors
Read More -
@litert/televoke
is a RPC library for NodeJS, written in TypeScript.Installation
1npm install @litert/televoke@^1.0.3
v1.0.3 CHANGELOG
- fix(client): Set default
maxConnections
to100
fortelevoke/1
protocol clients. - fix(client): Emit
close
event when connection to server is closed.
Read More - fix(client): Set default
-
@litert/websocket
is a Websocket protocol implementation for NodeJS, developed using TypeScript.This library supports both client and server Websocket protocol implementations, providing a simple and easy-to-use API.
安装
1npm install @litert/websocket@^0.2.3
v0.2.3 CHANGELOG
- fix(connection): added default write-callback in case of missing uncaught exception.
Read More -
@litert/televoke
is a RPC library for NodeJS, written in TypeScript.The version
v1.0.1
is a refactored version of the library, added thetelevoke/2
protocol support, introducing WebSocket and LwDFX protocols as transport protocols.Installation
1npm install @litert/televoke@^1.0.1
v1.0.1 CHANGELOG
- refactor: Refactored the whole library to make it more user-friendly.
- remove: Removed the TCP transport protocol support of
televoke/1
, and only kept the http/https transport protocol compatibility support. - feat: Added the
televoke/2
protocol support, introducing WebSocket and LwDFX protocols as transport protocols.
Read More -
@litert/logger
is a simple logger library, written in TypeScript.The version
v2.0.0
is a refactored version of the library.Installation
1npm install @litert/logger@^2.0.0
CHANGELOG
- refactor: Refactored the whole library to make it more user-friendly.
- remove: Removed most of the API methods of
LoggerFactory
- change:
LoggerFactory
no longer manages theLogger
objects it creates. - change: Updating configuration of
LoggerFactory
no longer affects theLogger
objects it previously created.
Read More