CAM is an open-source browser application for CNC work. It converts DXF and SVG files to GRBL-compatible G-code.
I built CAM because I hate Carbide 3D software. I needed a small application that works for my purposes.
CAM gives me one clear process:
- Import a design.
- Set the stock and tool data.
- Make a toolpath.
- Examine the cut.
- Export the G-code.
CAM is fully open source under the MIT License. You can use, copy, change, and distribute it.
Use the machine panel to set the machine, spindle, work area, and stock material.
Use the tool library to select or add an end mill or V-bit.
Import a DXF or SVG file. You can also make simple geometry in the workspace.
- Import DXF and SVG geometry.
- Find closed contours and editable regions.
- Make contour, pocket, and drill operations.
- Set the stock, machine, and tool data.
- Make depth passes and put toolpaths in order.
- Show geometry and toolpaths in a Three.js viewport.
- Simulate material removal in a Web Worker.
- Export GRBL-compatible G-code.
CAM requires Node.js 22 or a newer version.
git clone https://github.com/OneManLabs/cam.git
cd cam
npm ci
npm run devOpen the address that Vite shows.
- Import an SVG or DXF file.
- Set the stock dimensions and the work origin.
- Select or make a cutting tool.
- Select the geometry.
- Add the machining operations.
- Make and examine the toolpaths.
- Run the simulation.
- Export the G-code.
Run these commands before you submit a change:
npm run lint
npm test
npm run buildFor more technical data, read PROJECT.md.
Warning
Incorrect G-code can cause injury. It can also damage the machine or the material.
Before each cut, do these steps:
- Make sure that the units and origin are correct.
- Make sure that the tool data is correct.
- Make sure that the feeds, speeds, and clearances are correct.
- Examine the G-code and the simulation.
- Do a dry run with the spindle off.
CAM is experimental software. It has no warranty.
Read CONTRIBUTING.md before you make a large change. Report security problems as specified in SECURITY.md.
CAM uses the MIT License. Copyright 2026 One Man Labs.


