Gathering detailed insights and metrics for vue-autosizer
Gathering detailed insights and metrics for vue-autosizer
Gathering detailed insights and metrics for vue-autosizer
Gathering detailed insights and metrics for vue-autosizer
A light replacement for built-in <textarea> and <input> elements allowing them to automatically grow to fit the content.
npm install vue-autosizer
Typescript
Module System
Node Version
NPM Version
73.3
Supply Chain
86.7
Quality
75.2
Maintenance
100
Vulnerability
100
License
JavaScript (36.99%)
Vue (32.66%)
CSS (20.44%)
HTML (9.92%)
Total Downloads
3,579
Last Day
1
Last Week
9
Last Month
48
Last Year
358
5 Stars
12 Commits
1 Forks
1 Watchers
11 Branches
1 Contributors
Updated on May 01, 2024
Minified
Minified + Gzipped
Latest Version
0.1.4
Package Id
vue-autosizer@0.1.4
Unpacked Size
35.46 kB
Size
9.16 kB
File Count
12
NPM Version
6.11.3
Node Version
12.12.0
Cumulative downloads
Total Downloads
Last Day
-66.7%
1
Compared to previous day
Last Week
-18.2%
9
Compared to previous week
Last Month
118.2%
48
Compared to previous month
Last Year
-25.7%
358
Compared to previous year
A light (2.2kB) and dependency-free replacement for built-in <textarea>
and <input>
elements allowing them to automatically stretch to fit the content.
1npm install vue-autosizer
1yarn add vue-autosizer
You can import and register the plugin in the entry point of your application like so:
1import VueAutosizer from 'vue-autosizer' 2import 'vue-autosizer/dist/vue-autosizer.min.css' 3 4Vue.use(VueAutosizer)
Then use it like any other component:
1// Input that grows in width 2<autosize-input v-model="" /> 3 4// Textarea that grows in height 5<autosize-textarea v-model="" />
1<template> 2 <autosize-input v-model="" /> 3 4 <autosize-textarea v-model="" /> 5</template> 6 7<script> 8import { AutosizeInput, AutosizeTextarea } from 'vue-autosizer' 9 10export default { 11 components: { AutosizeInput, AutosizeTextarea } 12} 13</script> 14 15<style src="vue-autosizer/dist/vue-autosizer.min.css"/>
If you have any reasonable PR you are welcome.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 0/8 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
license file not detected
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
49 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-05
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