https://github.com/doodlewind/visue
vue visualizing dev tool
https://github.com/doodlewind/visue
Last synced: 11 months ago
JSON representation
vue visualizing dev tool
- Host: GitHub
- URL: https://github.com/doodlewind/visue
- Owner: doodlewind
- License: mit
- Created: 2017-04-04T14:24:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-07T00:32:58.000Z (over 9 years ago)
- Last Synced: 2025-05-14T09:13:34.437Z (about 1 year ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# visue
vue visualizing dev tool
## Feature
Visue aims at providing a desktop app to simplity front end coding. By combining electron UI and grammar analysis tool, visue is designed to enable developers:
* Visually inspect Vue component template, and easily load new components into the template tree.
* Visually inspect Vuex state / actions / mutations relating to a specific component, and CRUD corresponding code to implement feature in visue GUI.
* Visually modify backend GUI ajax code encapsulated in promise.

Visue is a dev tool rather than a framework / lib. It works like a code editor optimized for vue-based front end development workflow, all related project files can be opened and edited by visue, making it possible to opt-in your current workflow without any change to existing code.
## Development
Visue use webpack for electron user interface. Using following commands for webpack builds:
``` text
npm run dev # run admin development build
npm run prod # run admin production build
```
If error occurs when opening electron app, comment out the `BrowserWindow.addDevToolsExtension` code in `main.js` and retry.
## Install
TODO