Gathering detailed insights and metrics for vue-restricted-input
Gathering detailed insights and metrics for vue-restricted-input
Gathering detailed insights and metrics for vue-restricted-input
Gathering detailed insights and metrics for vue-restricted-input
Input mask library for vue.js based on credit-card-input-mask
npm install vue-restricted-input
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (90.47%)
JavaScript (9.53%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
10 Stars
37 Commits
2 Forks
1 Watchers
7 Branches
1 Contributors
Updated on Jan 25, 2024
Latest Version
1.0.2
Package Id
vue-restricted-input@1.0.2
Unpacked Size
8.25 kB
Size
3.12 kB
File Count
6
NPM Version
6.14.13
Node Version
14.17.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Input mask for vue.js based on credit-card-input-mask
credit-card-input-mask perfect work with carriage position, fast.
1$ npm install vue-restricted-input
Note: This project is compatible with node v12+
main.ts
1import { createApp } from 'vue'; 2import {VueRestrictedInputDirective} from 'vue-restricted-input'; 3 4import App from './App.vue'; 5 6const app = createApp(App); 7 8app.directive('mask', VueRestrictedInputDirective);
App.vue
1<template> 2 <input type="text" v-mask="mask" :value="value"> 3</template> 4 5<script setup> 6 import {ref} from 'vue'; 7 8 const value = ref('11111111'); 9 const mask = ref('{{9999}} {{9999}}'); 10</script>
input
elements.No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 0/13 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More