Gathering detailed insights and metrics for form-render-mobile
Gathering detailed insights and metrics for form-render-mobile
Gathering detailed insights and metrics for form-render-mobile
Gathering detailed insights and metrics for form-render-mobile
npm install form-render-mobile
Typescript
Module System
Node Version
NPM Version
TypeScript (93.44%)
Less (5.56%)
JavaScript (1%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
7,392 Stars
4,069 Commits
1,036 Forks
96 Watchers
38 Branches
98 Contributors
Updated on Jul 12, 2025
Latest Version
1.0.16
Package Id
form-render-mobile@1.0.16
Unpacked Size
248.13 kB
Size
47.70 kB
File Count
129
NPM Version
10.8.2
Node Version
20.18.0
Published on
May 28, 2025
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
11
3
2
Get started | API | Playground
FormRender Mobile 是为移动端设置的开箱即用的表单解决方案,通过 JsonSchema 协议动态渲染表单。基于 FormRender2.0 和 Ant Design Mobile 实现。API 与 FormRender2.0 基本一致,如果你熟悉 FromRender2.0 那么你就已经会使用 FormRender Mobile 了。
FormRender Mobile 依赖 Ant Design Mobile,单独使用不要忘记同时安装 antd-mobile
1npm i form-render-mobile --save
1import React from 'react'; 2import FormRender, { useForm } from 'form-render-mobile'; 3 4const schema = { 5 type: 'object', 6 displayType: 'row', 7 properties: { 8 input: { 9 title: '输入框', 10 type: 'string', 11 widget: 'input' 12 }, 13 radio: { 14 title: '单选', 15 type: 'string', 16 widget: 'radio', 17 props: { 18 options: [ 19 { label: '早', value: 'a' }, 20 { label: '中', value: 'b' }, 21 { label: '晚', value: 'c' } 22 ] 23 } 24 } 25 } 26}; 27 28 29export default () => { 30 const form = useForm(); 31 32 const onFinish = (formData) => { 33 console.log('formData:', formData); 34 }; 35 36 return ( 37 <FormRender 38 form={form} 39 schema={schema} 40 onFinish={onFinish} 41 /> 42 ); 43}
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
SAST tool is not run on all commits -- score normalized to 7
Details
Reason
Found 5/15 approved changesets -- score normalized to 3
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
60 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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