Always land on your paws
All CATS code is open source and can be used free of charge without warranty.
# install dependencies
npm install
# serve with hot reload at localhost:9080
npm start
# build electron application for production
npm run build
Because webpack's devtool
option is set to source-map
a source map is emitted as a separate file which makes debugging possible.
Include the following under .vscode/launch.json
:
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080"
}
]
}
Set your breakpoints, start the app via npm start
, select the vuejs: chrome
configuration in debug view and press F5 or click the green play button.