
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ngx-splitinput
Advanced tools
Angular split input library, that enables you to build awesome OTP verification forms.

Install library:
npm install --save ngx-splitinput
Import the NgxSplitInputModule into your Angular module:
import {NgxSplitInputModule} from 'ngx-splitinput';
@NgModule({
imports: [
NgxSplitInputModule,
...
],
...
})
export class AppModule { }
Use the NgxSplitInputComponent in you template as follows:
<ngx-split-input>
<input ngxSplitInput type="text" maxlength="1">
<input ngxSplitInput type="text" maxlength="1">
<input ngxSplitInput type="text" maxlength="1">
<input ngxSplitInput type="text" maxlength="1">
</ngx-split-input>
Currently only input elements of type 'text', 'number' and 'password' are supported. The ngxSplitInput directive has to be places on every input element contained in the SplitInput component. The 'type' and 'maxlength' arguments are required for every input.
For an example implementation see the code of the Sample App.
This section describes the inputs of the component. All inputs are optional.
autofocus: boolean = true: If set to true the first input element will be focused on page load.clipboard: boolean = true: If set to true autofill for textual content from clipboard is enabled.completed: any: Is emitted when the SplitInput fields are filled out completely and contains the concatenated value of the SplitInput fields.FAQs
Angular split input library, that enables you to build awesome OTP verification forms.
We found that ngx-splitinput 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.