
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
quick-tcp-socket
Advanced tools
Simple wrapper for net.Socket to send/receive JSON objects and Buffer streams.
Simple wrapper for net.Socket to send/receive JSON objects and Buffer streams.
Made as much faster alternative to socket.io + socket.io-stream
$ npm install quick-tcp-socket
const {
TcpSocket, ReadBufferStream, WriteBufferStream
} = require('quick-tcp-socket');
//
// Client
//
let clientSocket = net.connect(port, host, () => {
client = new TcpSocket(false, clientSocket);
client.sendPacket("getData1", {
param1: 1,
});
client.once("setData1", (data) => {
// data == {a: 1, b: 2}
});
client.on('close', () => { //disconnected });
client.on('error', (err) => { console.error(err); });
let readStream = fs.createReadStream("file.txt");
client.sendPacketAndStreams("setStream1", {size: 100}, readStream);
});
//
// Server
//
net.createServer({}, (clientSocket) => {
let client = new TcpSocket(true, clientSocket);
client.on('getData1', (params) => {
// params.param1 == 1
client.sendPacket('setData1', {
a: 1, b: 2
});
});
client.on("setStream1", (data) => {
// data.size == 100
let writeStream = fs.createWriteStream("file.txt");
client.receiveStreams([writeStream], () => {
//stream received
});
});
client.on('close', () => { //client disconnected });
client.on('error', (err) => { console.error(err); });
});
todo...
FAQs
Simple wrapper for net.Socket to send/receive JSON objects and Buffer streams.
The npm package quick-tcp-socket receives a total of 1 weekly downloads. As such, quick-tcp-socket popularity was classified as not popular.
We found that quick-tcp-socket demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.