Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/open-mmlab/labelbee
LabelBee is an annotation Library
https://github.com/open-mmlab/labelbee
annotation frontend javascript
Last synced: 6 days ago
JSON representation
LabelBee is an annotation Library
- Host: GitHub
- URL: https://github.com/open-mmlab/labelbee
- Owner: open-mmlab
- License: apache-2.0
- Created: 2021-12-03T12:53:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T02:38:57.000Z (8 months ago)
- Last Synced: 2024-04-19T11:02:29.098Z (8 months ago)
- Topics: annotation, frontend, javascript
- Language: TypeScript
- Homepage:
- Size: 38 MB
- Stars: 223
- Watchers: 5
- Forks: 50
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## 特性
- 即拆即用,简单配置即可创建标注应用
- 渲染分离,可单独使用渲染模块## 安装
```bash
# npm
npm install @labelbee/lb-annotation
npm install @labelbee/lb-components# yarn
yarn add @labelbee/lb-annotation
yarn add @labelbee/lb-components
```## 使用
快速开始例子
```js
import React from 'react';
import ReactDOM from 'react-dom';
import { AnnotationView } from '@labelbee/lb-components';const src = ''; // 可访问的图片路径
const DefaultComponent = () => {
return (
)
}ReactDOM.render(, document.querySelector('#app'));
```## 文档
- [LabelBee 渲染库 - lb-Annotation](./packages/lb-annotation/README.md)
- [LabelBee 组件库 - lb-components](./packages/lb-components/README.md)
- [快速 DEMO 展示](./packages/lb-demo/README.md)## 友情链接
- [LabelBee-Client](https://github.com/open-mmlab/labelbee-client)
## LICENSE
该项目使用 [Apache 2.0 license](./LICENSE).