Development
Development Guide
When developing, you need to have Node
, Git
environment in the local machine, and know about npm
,Vue.js
, Electron
,TypeScript
and other related knowledge.
# Fork & Clone project
git clone git@github.com:${name}/MQTTX.git
# Install dependencies
cd MQTTX
yarn install
# Compile and hot reload for development
yarn run electron:serve
# Compile and compress to build a production version
yarn run electron:build
After the building is successful, the corresponding installation file for the successful building will appear in the dist_electron
directory.
If you need to package it as an installation package for an independent operating system, please refer to the following command:
# For Windows
yarn run electron:build-win
# For Linux
yarn run electron:build-linux
# For macOS
yarn run electron:build-mac
Contributing
Please make sure to read the Contributing Guide before making a pull request.