![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
#argyle A basic SOCKS5 server library written for node.js.
##Features/Limitations argyle supports the most basic features of SOCKS and not a whole lot more, namely:
In the future I may add support for more auth modes and commands, but currently this implementation works well for my main use case (sitting between a local browser and server).
##Usage ###Example: "Normal" proxy server
var argyle = require('argyle');
var server = argyle(8080, '127.0.0.1');
server.on('connected', function(req, dest) {
req.pipe(dest);
dest.pipe(req);
});
###Example: Throttled proxy server using node-throttled-stream
var argyle = require('argyle'),
throttle = require('throttled-stream'),
kbpsUp = 32,
kbpsDown = 128;
var server = argyle(8080, '127.0.0.1');
server.on('connected', function(req, dest) {
var tReq = throttle(req, kbpsUp * 1024),
tDest = throttle(dest, kbpsDown * 1024);
dest.once('error', function(err) { req.end(); })
.on('close', function() { req.end(); });
tReq.on('data', function(chunk) {
dest.write(chunk);
});
tDest.on('data', function(chunk) {
req.write(chunk);
});
});
##Methods ###argyle([port = 8080], [host = 127.0.0.1], [debug = false]) Sets up a new SOCKS server on the specified port and host. If debug is specified, the server will output messages about the status of connections.
##Events
###'connected'
A new client connected to the server and the socket to their requested destination is now open. Handlers for this event are passed a request
socket, corresponding to the client that made the request from the server, and a destination
socket, corresponding to the server that they requested to connect to.
##Installation With npm:
npm install argyle
##License WTFPL
FAQs
Basic SOCKS5 server libary
The npm package argyle receives a total of 0 weekly downloads. As such, argyle popularity was classified as not popular.
We found that argyle 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.