
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
react-word-input
Advanced tools
WordInput
is a react functional component for input hinted word.
It take value as the hinted word and callback functions onComplete/onEnter which return the word entered by user.
LIVE DEMO
This module is installed via npm:
npm install react-word-input
import './App.css';
import { WordInput } from 'react-word-input';
function App() {
const print = (word) => {
console.log(word);
}
return (
<div className="App">
<WordInput className='word' value={'W_R_ __P_T'} onChange={print} autoFocus />
</div>
);
}
export default App;
Name | Type | Required | Default | Description |
---|---|---|---|---|
onChange | Function | false | - | Returns word everytime when word is changed |
onComplete | Function | false | - | Returns word when word is filled |
onEnter | Function | false | - | Returns word when user press enter |
value | String | true | - | The value of the hinted word |
className | String | false | - | Class for input element |
disabled | Boolean | false | false | Disables the input |
autoFocus | Boolean | false | false | Auto focuses input on initial page load |
spellCheck | Boolean | false | false | Check is word spells correct or not |
FAQs
React functional component for input hinted word
The npm package react-word-input receives a total of 0 weekly downloads. As such, react-word-input popularity was classified as not popular.
We found that react-word-input 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.