voneiden / grblmngr

Grblmngr is a user interface for grbl CNC controller
0 stars 0 forks source link

Grblmngr is a manager for grbl, duh. Grblmngr is primarily aimed to serve my own needs and therefore it aims to

It's unlikely ever to have all the bells and whistles of bCNC or be as polished as OpenCNCPilot so when in doubt check those out first.

Install from source

Windows

On Windows you'll need VC++ build tools which you can get with if you don't have them installed

npm install --global windows-build-tools@3.1.0 --production

Development server

To run a electron development server run

npm run start
npm run electron

To run a browser development server (otherwise identical except no serial port access) run

npm run startweb

Build

The building of the electron app is a two stage process. The first stage builds the render side of the app for the electron-renderer target, and the second stage packs the final application.

npm run build
cd build
npm install
npm run pack

Build for browser app is not yet implemented.