Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
json-schema-editor-lite
Advanced tools
基于 json-schema-editor-visual 和 json-schema-editor-antd 改造,支持元组(tuple)功能
# 开发
npm run dev
# 构建
npm run build
# 发布前预览
npm run prepublishOnly && arco preview
# 发布至物料平台(需先发布 NPM 包)
arco sync
npm install json-schema-editor-lite
import JsonSchemaEditor from 'json-schema-editor-lite';
import 'json-schema-editor-lite/dist/css/index.css';
import { useEffect } from 'react';
export default () => {
const [jsonData, setJsonData] = useEffect({});
return (
<JsonSchemaEditor
data={jsonData}
onChange={(data) => {
setJsonData(data);
}}
/>
)
}
FAQs
Json Schema 编辑器
The npm package json-schema-editor-lite receives a total of 0 weekly downloads. As such, json-schema-editor-lite popularity was classified as not popular.
We found that json-schema-editor-lite 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.