{"id":36696680,"url":"https://github.com/uiwjs/uiw-example-parcel","last_synced_at":"2026-01-12T11:32:39.385Z","repository":{"id":42656320,"uuid":"125816191","full_name":"uiwjs/uiw-example-parcel","owner":"uiwjs","description":"Using @uiwjs in @parcel-bundler.","archived":false,"fork":false,"pushed_at":"2025-03-28T20:48:47.000Z","size":2490,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T21:31:36.280Z","etag":null,"topics":["parcel","parcel-bundler","parceljs","react","uiw","uiw-react"],"latest_commit_sha":null,"homepage":"https://uiwjs.github.io/uiw-example-parcel","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/uiwjs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-19T07:11:06.000Z","updated_at":"2021-10-19T02:30:24.000Z","dependencies_parsed_at":"2023-01-22T15:00:25.154Z","dependency_job_id":"1cf4c1c5-653c-467e-9f71-ae754ae7df73","html_url":"https://github.com/uiwjs/uiw-example-parcel","commit_stats":null,"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/uiwjs/uiw-example-parcel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiwjs%2Fuiw-example-parcel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiwjs%2Fuiw-example-parcel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiwjs%2Fuiw-example-parcel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiwjs%2Fuiw-example-parcel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uiwjs","download_url":"https://codeload.github.com/uiwjs/uiw-example-parcel/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiwjs%2Fuiw-example-parcel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28338971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T10:58:46.209Z","status":"ssl_error","status_checked_at":"2026-01-12T10:58:42.742Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["parcel","parcel-bundler","parceljs","react","uiw","uiw-react"],"created_at":"2026-01-12T11:32:38.790Z","updated_at":"2026-01-12T11:32:39.380Z","avatar_url":"https://github.com/uiwjs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"uiw-example-parcel\n===\n\n[![CI](https://github.com/uiwjs/uiw-example-parcel/actions/workflows/ci.yml/badge.svg)](https://github.com/uiwjs/uiw-example-parcel/actions/workflows/ci.yml)\n\nThis project is build on [@parcel-bundler](https://github.com/parcel-bundler/parcel).\n\n## Modify Content\n\n\n[package.json](https://github.com/uiwjs/uiw-example-parcel/blob/5c13ae225eabb509ba1d67871a42028a51d343e9/package.json#L13-L28)\n\n```diff\n{\n  \"name\": \"uiw-example\",\n  \"version\": \"0.1.0\",\n  \"private\": true,\n  \"dependencies\": {\n+    \"uiw\": \"^4.6.13\"\n  }\n}\n```\n\n[src/App.js](https://github.com/uiwjs/uiw-example-parcel/blob/5c13ae225eabb509ba1d67871a42028a51d343e9/src/App.js#L2)\n\n```diff\nimport React, { Component } from 'react';\n+ import { Button } from 'uiw';\nimport logo from './logo.svg';\nimport './App.css';\n\nclass App extends Component {\n  render() {\n    return (\n      \u003cdiv className=\"App\"\u003e\n        \u003cheader className=\"App-header\"\u003e\n          \u003cimg src={logo} className=\"App-logo\" alt=\"logo\" /\u003e\n          \u003ch1 className=\"App-title\"\u003eWelcome to React\u003c/h1\u003e\n        \u003c/header\u003e\n        \u003cp className=\"App-intro\"\u003e\n          To get started, edit \u003ccode\u003esrc/App.js\u003c/code\u003e and save to reload.\n        \u003c/p\u003e\n+        \u003cButton type=\"primary\"\u003e主要按钮\u003c/Button\u003e\n+        \u003cButton type=\"success\"\u003e成功按钮\u003c/Button\u003e\n+        \u003cButton type=\"warning\"\u003e警告按钮\u003c/Button\u003e\n+        \u003cButton type=\"danger\"\u003e错误按钮\u003c/Button\u003e\n+        \u003cButton type=\"light\"\u003e亮按钮\u003c/Button\u003e\n+        \u003cButton type=\"dark\"\u003e暗按钮\u003c/Button\u003e\n      \u003c/div\u003e\n    );\n  }\n}\n\nexport default App;\n```\n\n### License\n\nLicensed under the MIT License","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuiwjs%2Fuiw-example-parcel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuiwjs%2Fuiw-example-parcel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuiwjs%2Fuiw-example-parcel/lists"}