https://github.com/coding/webide-plugin-sdk
  
  
    coding webide plugin frontend sdk 
    https://github.com/coding/webide-plugin-sdk
  
        Last synced: 8 months ago 
        JSON representation
    
coding webide plugin frontend sdk
- Host: GitHub
- URL: https://github.com/coding/webide-plugin-sdk
- Owner: coding
- Created: 2017-03-09T06:10:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-14T10:23:34.000Z (almost 7 years ago)
- Last Synced: 2024-10-14T09:30:40.989Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 311 KB
- Stars: 0
- Watchers: 13
- Forks: 3
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- Changelog: CHANGELOG.md
 
Awesome Lists containing this project
README
          ## WebIDE-Plugin-SDK
 - build your plugin
 - offer sdk apis for coding webide plugins
 - dev your apps with remote hotReload
  
## dev plugin with main project
config PACKAGE_SERVER env when running main project
run yarn run dev in main project
## dev sdk with plugin
link the project to the plugin node modules
## build
you can use this sdk to build the plugin to required format
```PACKAGE_DIR=ssh://XXX.git yarn run build```
output to the ./dist
```
main
├── dist
│   ├── 0.0.1-alpha.04        // 版本号
│   ├── ├── index.js          // jsbundle
│   ├── ├── manifest.json     // 插件描述
│   └── ...          // 其他文件
└──
```
## sdk api
## todo
- [ ] improve basic sdks
- [ ] build in local env
- [ ] readme
- [ ] tests
## changelog
* [changelog](https://github.com/Coding/WebIDE-Plugin-SDK/blob/develop/CHANGELOG.md)