项目作者: cncjs

项目描述 :
用于CNC铣削控制器的基于Web的界面,用于运行Grbl,Marlin,Smoothieware或TinyG。
高级语言: JavaScript
项目地址: git://github.com/cncjs/cncjs.git


CNCjs Backers on Open Collective Sponsors on Open Collective Travis CI Build Status AppVeyor Build status Coverage Status

NPM
cncjs

CNCjs is a full-featured web-based interface for CNC controllers running Grbl, Marlin, Smoothieware, or TinyG.

For a more complete introduction, see the Introduction section of the wiki page.

cncjs

Features

Custom Widgets

Pendants

Boilerplate Code

Existing Pendants

Tablet UI

Browser Support

Chrome
Chrome
Edge
Edge
Firefox
Firefox
IE
IE
Opera
Opera
Safari
Safari
Yes Yes Yes Not supported Yes Yes

Supported Node.js Versions

Version Supported Level
<= 10 Not supported
12 Supported
>= 14 Recommended

Getting Started

Node.js Installation

Node.js 14 or higher is recommended. You can install Node Version Manager to manage multiple Node.js versions. If you have git installed, just clone the nvm repo, and check out the latest version:

  1. git clone https://github.com/creationix/nvm.git ~/.nvm
  2. cd ~/.nvm
  3. git checkout `git describe --abbrev=0 --tags`
  4. cd ..
  5. . ~/.nvm/nvm.sh

Add these lines to your ~/.bash_profile, ~/.bashrc, or ~/.profile file to have it automatically sourced upon login:

  1. export NVM_DIR="$HOME/.nvm"
  2. [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

Once installed, you can select Node.js versions with:

  1. nvm install 14
  2. nvm use 14

It’s also recommended that you upgrade npm to the latest version. To upgrade, run:

  1. npm install npm@latest -g

Installation

Install cncjs as a non-root user, or the serialport module may not install correctly on some platforms like Raspberry Pi.

  1. npm install -g cncjs

If you’re going to use sudo or root to install cncjs, you need to specify the --unsafe-perm option to run npm as the root account.

  1. sudo npm install --unsafe-perm -g cncjs

Check out https://github.com/cncjs/cncjs/wiki/Installation for other installation methods.

Upgrade

Run npm install -g cncjs@latest to install the latest version. To determine the version, use cncjs -V.

Usage

Run cncjs to start the server, and visit http://yourhostname:8000/ to view the web interface. Pass --help to cncjs for more options.

  1. pi@rpi3$ cncjs -h
  2. Usage: cncjs [options]
  3. Options:
  4. -V, --version output the version number
  5. -p, --port <port> Set listen port (default: 8000)
  6. -H, --host <host> Set listen address or hostname (default: 0.0.0.0)
  7. -b, --backlog <backlog> Set listen backlog (default: 511)
  8. -c, --config <filename> Set config file (default: ~/.cncrc)
  9. -v, --verbose Increase the verbosity level (-v, -vv, -vvv)
  10. -m, --mount <route-path>:<target> Add a mount point for serving static files
  11. -w, --watch-directory <path> Watch a directory for changes
  12. --access-token-lifetime <lifetime> Access token lifetime in seconds or a time span string (default: 30d)
  13. --allow-remote-access Allow remote access to the server (default: false)
  14. --controller <type> Specify CNC controller: Grbl|Marlin|Smoothie|TinyG|g2core (default: '')
  15. -h, --help output usage information
  16. Examples:
  17. $ cncjs -vv
  18. $ cncjs --mount /pendant:/home/pi/tinyweb
  19. $ cncjs --mount /widget:~+/widget --mount /pendant:~/pendant
  20. $ cncjs --mount /widget:https://cncjs.github.io/cncjs-widget-boilerplate/v1/
  21. $ cncjs --watch-directory /home/pi/watch
  22. $ cncjs --access-token-lifetime 60d # e.g. 3600, 30m, 12h, 30d
  23. $ cncjs --allow-remote-access
  24. $ cncjs --controller Grbl

Instead of passing command line options for --watch-directory, --access-token-lifetime, --allow-remote-access, and --controller, you can create a ~/.cncrc file that contains the following configuration in JSON format:

  1. {
  2. "mountPoints": [
  3. {
  4. "route": "/pendant",
  5. "target": "/home/pi/tinyweb"
  6. },
  7. {
  8. "route": "/widget",
  9. "target": "https://cncjs.github.io/cncjs-widget-boilerplate/v1/"
  10. }
  11. ],
  12. "watchDirectory": "/path/to/dir",
  13. "accessTokenLifetime": "30d",
  14. "allowRemoteAccess": false,
  15. "controller": ""
  16. }

To troubleshoot issues, run:

  1. cncjs -vvv

Configuration File

The configuration file .cncrc contains settings that are equivalent to the cncjs command-line options. The configuration file is stored in user’s home directory. To find out the actual location of the home directory, do the following:

  • Linux/Mac

    1. echo $HOME
  • Windows

    1. echo %USERPROFILE%

Check out an example configuration file here.

File Format

See https://github.com/cncjs/cncjs/issues/242#issuecomment-352294549 for a detailed explanation.

  1. {
  2. "ports": [
  3. {
  4. "path": "/dev/ttyAMA0",
  5. "manufacturer": ""
  6. }
  7. ],
  8. "baudrates": [115200, 250000],
  9. "mountPoints": [
  10. {
  11. "route": "/widget",
  12. "target": "https://cncjs.github.io/cncjs-widget-boilerplate/v1/"
  13. }
  14. ],
  15. "watchDirectory": "/path/to/dir",
  16. "accessTokenLifetime": "30d",
  17. "allowRemoteAccess": false,
  18. "controller": "",
  19. "state": {
  20. "checkForUpdates": true,
  21. "controller": {
  22. "exception": {
  23. "ignoreErrors": false
  24. }
  25. }
  26. },
  27. "commands": [
  28. {
  29. "title": "Update (root user)",
  30. "commands": "sudo npm install -g cncjs@latest --unsafe-perm; pkill -f cncjs"
  31. },
  32. {
  33. "title": "Update (non-root user)",
  34. "commands": "npm install -g cncjs@latest; pkill -f cncjs"
  35. },
  36. {
  37. "title": "Reboot",
  38. "commands": "sudo /sbin/reboot"
  39. },
  40. {
  41. "title": "Shutdown",
  42. "commands": "sudo /sbin/shutdown"
  43. }
  44. ],
  45. "events": [],
  46. "macros": [],
  47. "users": []
  48. }

Documentation

https://cnc.js.org/docs/

Examples

There are several *.gcode files in the examples directory. You can use the GCode widget to load a GCode file and make a trial run.

If you don’t have a CAM software, try using jscut to create G-Code from *.svg. It’s a simple CAM package that runs in the browser.

Check out a live demo at http://jscut.org/jscut.html.

Contributions

Use GitHub issues for requests.

Pull requests welcome! Learn how to contribute.

Localization

You can help translate resource files in both of app and server directories from English to other languages. Check out Localization guide to learn how to get started. If you are not familiar with GitHub development, you can open an issue or send your translations to cheton@gmail.com.

Locale Language Status Contributors
cs Čeština (Czech) Miroslav Zuzelka
de Deutsch (German) Thorsten Godau, Max B.
es Español (Spanish) Juan Biondi, hasecilu
fr Français (French) Simon Maillard, CorentinBrulé
hu Magyar (Hungarian) Sipos Péter
it Italiano (Italian) vince87
ja 日本語 (Japanese) Naoki Okamoto
nl Nederlands (Netherlands) dutchpatriot
pt-br Português (Brasil) cmsteinBR
ru Ру́сский (Russian) Denis Yusupov
uk українська (Ukrainian) khvalera
tr Türkçe (Turkish) Ali GÜNDOĞDU
zh-cn 简体中文 (Simplified Chinese) Mandy Chien, Terry Lee
zh-tw 繁體中文 (Traditional Chinese) Cheton Wu

Donate

If you would like to support this project, you can make a donation using PayPal. Thank you!

Donate

Contributors

This project exists thanks to all the people who contribute. [Contribute].

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]










License

Licensed under the MIT License.