Laaouatni / gcode.js

basically a gcode library for making the making gcode program easily and efficiently for CNC machines.

Home Page:https://gcode-js.vercel.app/

Repository from Github https://github.comLaaouatni/gcode.jsRepository from Github https://github.comLaaouatni/gcode.js

gcode.js

⚠️ this is the old version, now we are rewriting/refactoring this library, so we can use svelte.js framework

https://github.com/gcodeJS/Gcode.js/

basically a gcode library for making the creation of gcode programs easily and efficiently for CNC machines.

// example
const G0 = new G0({x:0, y:0});

for(let i=0; i < 10; i++) {
   G0.moveTo({ 
      left: Math.random() * 100,
      top: Math.random() * 100 
   });
}

demo: https://gcode-js.vercel.app

image

⚠️ the project is not completed, don't use it (at least for now, in the future maybe yes) but you can suggest some ideas

About

basically a gcode library for making the making gcode program easily and efficiently for CNC machines.

https://gcode-js.vercel.app/

License:MIT License


Languages

Language:HTML 63.7%Language:JavaScript 30.1%Language:CSS 6.2%