Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DTStack/molecule
:rocket: A lightweight Web IDE UI framework.
https://github.com/DTStack/molecule
colortheme ide monaco-editor react sql storybook typescript vscode web-ide workbench
Last synced: 3 days ago
JSON representation
:rocket: A lightweight Web IDE UI framework.
- Host: GitHub
- URL: https://github.com/DTStack/molecule
- Owner: DTStack
- License: other
- Created: 2021-01-25T12:39:41.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T06:12:48.000Z (8 days ago)
- Last Synced: 2024-11-03T21:36:24.363Z (5 days ago)
- Topics: colortheme, ide, monaco-editor, react, sql, storybook, typescript, vscode, web-ide, workbench
- Language: TypeScript
- Homepage: https://dtstack.github.io/molecule/
- Size: 73.4 MB
- Stars: 887
- Watchers: 12
- Forks: 128
- Open Issues: 29
-
Metadata Files:
- Readme: README-koKR.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome - DTStack/molecule - :rocket: A lightweight Web IDE UI framework. (TypeScript)
- awesome-github-star - molecule
README
Molecule
경량 웹 IDE UI 프레임워크
[![CI][ci-image]][ci-url] [![CII Best Practices][cii-img]][cii-url] [![Codecov][codecov-image]][codecov-url] [![NPM downloads][download-img]][download-url] [![NPM version][npm-version]][npm-version-url] [![Chat][online-chat-img]][online-chat-url]
[ci-image]: https://github.com/DTStack/molecule/actions/workflows/main.yml/badge.svg
[ci-url]: https://github.com/DTStack/molecule/actions/workflows/main.yml
[codecov-image]: https://codecov.io/gh/DTStack/molecule/branch/main/graph/badge.svg?token=PDjbCBo6qz
[codecov-url]: https://codecov.io/gh/DTStack/molecule
[download-img]: https://img.shields.io/npm/dm/@dtinsight/molecule.svg?style=flat
[download-url]: https://www.npmjs.com/package/@dtinsight/molecule
[npm-version]: https://img.shields.io/npm/v/@dtinsight/molecule.svg?style=flat-square
[npm-version-url]: https://www.npmjs.com/package/@dtinsight/molecule
[online-chat-img]: https://img.shields.io/discord/920616811261743104?logo=Molecule
[online-chat-url]: https://discord.com/invite/b62gpHwNA7
[cii-img]: https://bestpractices.coreinfrastructure.org/projects/6307/badge
[cii-url]: https://bestpractices.coreinfrastructure.org/projects/6307[中文](./README-zhCN.md) | [English](./README.md) | [한국어](./README-koKR.md)
**Molecule**은 React.js로 구축되었으며 VSCode에서 영감을 받은 경량 **웹 IDE UI** 프레임워크입니다. 개발자가 워크벤치를 더 쉽게 확장할 수 있도록 VSCode와 유사한 확장 API를 설계했습니다. Molecule을 React.js 애플리케이션과 통합하는 것이 편리합니다. [DTStack](https://www.dtstack.com/)의 많은 제품들에 이 코드가 적용되었습니다.
[온라인 미리보기](https://dtstack.github.io/molecule-examples/#/)
## 기능들
- Visual Studio Code **워크벤치** UI 제공
(https://code.visualstudio.com/api/extension-capabilities/extending-workbench)
- VSCode **ColorTheme** 와 호환
- **React Component**를 통해 워크벤치를 쉽게 사용자 정의
- Monaco-Editor **Command Palette, Keybinding** 기능 내장
- **i18n** 지원, 중국어 간체, 영어 , 한국어 지원
- **설정** 지원 , Extension을 통한 편집 및 확장 지원
- 기본 **Explorer, Search** 컴포넌트 지원, Extension을 통환 확장 지원
- **Typescript** 지원## 설치
```bash
npm install @dtinsight/molecule
# Or
yarn add @dtinsight/molecule
```## 기본 사용법
```javascript
import React from 'react';
import ReactDOM from 'react-dom';
import { create, Workbench } from '@dtinsight/molecule';
import '@dtinsight/molecule/esm/style/mo.css';const moInstance = create({
extensions: [],
});const App = () => moInstance.render();
ReactDOM.render(, document.getElementById('root'));
````extension`은 확장 응용 프로그램 항목입니다. 확장에 대한 자세한 내용은 [빠른 시작](https://dtstack.github.io/molecule/docs/quick-start)을 참조하십시오.
## 문서
- [소개](https://dtstack.github.io/molecule/docs/introduction)
- [빠른 시작](https://dtstack.github.io/molecule/docs/quick-start)
- [API](https://dtstack.github.io/molecule/docs/api)
- [확장 워크벤치](https://dtstack.github.io/molecule/docs/guides/extend-workbench)
- [예제들](https://github.com/DTStack/molecule-examples)## 개발
```bash
git clone [email protected]:DTStack/molecule.git
```로컬에 소스코드를 클론 하세요
**개발 모드**
```bash
yarn # Install dependenciesyarn dev # Start dev mode
```Molecule은 React 컴포넌트를 개발,관리하기 위해 **Storybook**을 사용합니다.
기본 링크는 `http://localhost:6006/` 입니다.**테스트**
```bash
yarn test -u
```**빌드 & 미리보기**
```bash
yarn build # Compile to ESM
yarn web # Web Preview Mode
```소스 코드를 ES6 모듈로 컴파일하고 **`esm`** 폴더에 출력 합니다. 스토리북 개발 모드 외에도 ESM 모듈을 사용하는 **Web Preview** 모드도 내장되어 있습니다.
## 기여
자세한 사항은 [기여](./CONTRIBUTING.md)을 참조하세요.
## 라이선스
Copyright © DTStack. All rights reserved.
MIT 라이선스에 따라 라이선스가 부여됩니다.