
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
nepali-input-react
Advanced tools
Conversion functions, mappings, input and textarea components for nepali unicode romanized typing.
Conversion functions, mappings, input and textarea components for nepali unicode romanized typing.
Install via npm or yarn
npm install nepali-input-react
import * as React from 'react';
import { NepaliInput, NepaliTextArea } from 'nepali-input-react';
export default function App() {
const [text, setText] = React.useState('');
return (
<div>
<NepaliInput value={text} onChange={e => setText(e.target.value)} />
<NepaliTextArea value={text} onChange={e => setText(e.target.value)} />
</div>
);
}
import * as React from 'react';
import { NepaliInput } from 'nepali-input-react';
import { Box, TextField } from '@mui/material';
export default function App() {
const [text, setText] = React.useState('');
return (
<Box sx={{ p: 8 }}>
<TextField
label="Type in nepali"
value={text}
onChange={e => setText(e.target.value)}
name="nepali-textfield"
id="nepali-textfield-input"
InputProps={{
inputComponent: NepaliInput,
}}
variant="outlined"
/>
</Box>
);
}
import { getNepaliFromEnglish } from 'nepali-input-react';
getNepaliFromEnglish('mero nam HmoG ho.'); //рдореЗрд░реЛ рдирд╛рдо рдЕрдореЛрдШ рд╣реЛред
import { getEnglishFromNepali } from 'nepali-input-react';
getEnglishFromNepali('рдореЗрд░реЛ рдирд╛рдо рдЕрдореЛрдШ рд╣реЛред'); //mero nam HmoG ho.
import { mappings } from 'nepali-input-react';
mappings['a'];
import { NepaliInput } from 'nepali-input-react';
export default function App() {
return <NepaliInput />; // any props that <input /> accepts is a valid prop
}
import { NepaliTextArea } from 'nepali-input-react';
export default function App() {
return <NepaliTextArea />; // any props that <textarea /> accepts is a valid prop
}
FAQs
Conversion functions, mappings, input and textarea components for nepali unicode romanized typing.
The npm package nepali-input-react receives a total of 20 weekly downloads. As such, nepali-input-react popularity was classified as not popular.
We found that nepali-input-react 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.