This is a micro application based on Electron.
To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
git clone https://github.com/nesschenes/dragonbones-formatter.git
# Go into the repository
cd dragonbones-formatter
# Install dependencies
npm install
# Run the app
npm start
Note: If you're using Linux Bash for Windows, see this guide or use node
from the command prompt.
To recompile automatically and to allow using electron-reload, run this in a separate terminal:
npm run watch
Generates the package directory without really packaging it. This is useful for testing purposes).
npm run pack
The location of the archived files should be ./archives by default.
Package the application in a distributable format (e.g. dmg, windows installer, deb package)).
npm run archive
The location of the archived files should be ./archives by default.