
Research
/Security News
5 Malicious Rust Crates Posed as Time Utilities to Exfiltrate .env Files
Published late February to early March 2026, these crates impersonate timeapi.io and POST .env secrets to a threat actor-controlled lookalike domain.
react-guify
Advanced tools
  
React-guify is a thin wrapper around the simple GUI library guify.

#Yarn
yarn add guify react-guify
#NPM
npm install guify react-guify
function App() {
const [state, setState] = React.useState(initialState)
const gui = React.useRef()
return (
<GuiPanel
ref={gui}
data={state}
setData={setState}
barMode="above"
theme="light"
>
<GuiButton
label="Toast"
action={() => {
gui.current.Toast('Current date: ' + Date.now())
}}
/>
<GuiText property="name" />
<GuiTitle label="Options" />
<GuiFile label="Select File" property="file" />
<GuiDisplay property="name" />
<GuiCheckbox property="checkeds" />
<GuiColor property="color" />
<GuiFolder label="Bounds Folder" open={true}>
<GuiRange
label="bounds"
property="bounds"
scale="log"
onChange={value => console.log({ value })}
/>
<GuiSelect property="movement" options={options} />
<GuiInterval property="interval" min={5} max={70} />
</GuiFolder>
</GuiPanel>
)
}
React-guify creates and exports React components that allow you to structure the GUI with React nodes.
You can pass all options from guify as props to these components. For now components will not respond to props update.
GuiPanel: guify main panel.In addition to the native options from guify, the panel requires two additional props:
data: the data object bound to components.setData: the function the panel will call to update your data when values change.GuiCheckbox: a checkboxGuiRange: a number selectorGuiInterval: an interval selectorGuiColor: a color selectorGuiSelect: an option selectorGuiText: a free-text entryGuiDisplay: displays a variableGuiFile: a file selectorGuiButton: a button with an actionGuiTitle: shows a titleGuiFolder: a folder grouping different componentsguify has a nice toast feature that React-guify tries to implement seamlessly. The panel component will pass back a ref to you, which will include the original gui object created by guify.
function ToastExample() {
const [state, setState] = React.useState(initialState)
const gui = React.useRef()
return (
<GuiPanel ref={gui} data={state} setData={setState}>
<GuiButton
label="Toast"
action={() => gui.current.Toast('Hello from Toast')}
/>
</GuiPanel>
)
}
FAQs
  
The npm package react-guify receives a total of 1 weekly downloads. As such, react-guify popularity was classified as not popular.
We found that react-guify 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.

Research
/Security News
Published late February to early March 2026, these crates impersonate timeapi.io and POST .env secrets to a threat actor-controlled lookalike domain.

Security News
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.