
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
react-input-just-numbers
Advanced tools
React Form Input Number with Support for Mobile Devices.
React Input Just Numbers is a Hack to fix the issues with HTML Form Input type=number in Mobile and Desktops.
It eliminates the issue of accidentally changing numeric values when a user scroll's over the focused input as well as changing values with Up and Down Keys(In Desktop). It opens a Numeric Keypad in Both Android and IOS Devices. It Gives you an option of choosing just numeric keypad (just the digits, no .(dot) character) for IOS using 'onlydigits' attribute. Android has a .(dot) in its default Numeric Keypad.
$ npm install react-input-just-numbers --save
Import it in your Component
import InputNumber from 'react-input-just-numbers';
Use it like a normal Form Component, add attributes and events as you would have added normally in an input[type="number"] field in React.
<form>
...
<InputNumber placeholder="Your Placeholder Text" value={someDefaultValue}
onChange={(e) => someFunctionName(e)}
/>
...
</form>
Add 'onlydigits' attribute to enable Numeric Keypad in Apple IOS Devices, Android opens it by default.
<InputNumber onlydigits placeholder="Your Placeholder Text" value={someDefaultValue}
onChange={(e) => someFunctionName()}
/>
MIT | © Ayushya Jaiswal
FAQs
React Form Input Number with Support for Mobile Devices.
The npm package react-input-just-numbers receives a total of 16 weekly downloads. As such, react-input-just-numbers popularity was classified as not popular.
We found that react-input-just-numbers 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
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.