Fork of GridSpace/grid-apps (MIT), patched for CMMS job-scoped load/save integration (Kiri:Moto CAM + Mesh:Tool).
  • JavaScript 93.7%
  • C++ 3%
  • CSS 1.8%
  • HTML 1.4%
  • C 0.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-01-22 22:35:57 -05:00
.github simplify to publish docs on all rel branches 2025-12-20 16:02:04 -07:00
apps remove old obsolete startup options 2020-06-16 22:53:02 -04:00
bin add quickjs eval engine for macros 2025-12-24 14:15:47 -05:00
conf Merge branch 'master' of https://github.com/GridSpace/grid-apps into rel-4.5 2025-11-30 15:35:18 -07:00
docs fix docs formatting for controls.md 2026-01-11 20:21:22 -05:00
mods move dev server warning into mainline 2025-12-26 19:07:32 -05:00
sample update sample module readme 2022-11-13 11:22:50 -05:00
src fix engine setMode() 2026-01-22 22:35:57 -05:00
web add trace 'offset z' option 2026-01-21 20:17:41 -05:00
.gitignore kiri/app renames and reorgs 2025-12-25 10:35:49 -05:00
app-el.js change electron build context detection, move mods package deps to main package 2025-11-15 17:33:32 -05:00
app.js normalize dolly in/out across browsers 2026-01-10 21:01:20 -05:00
contributing.md fix contour y bounds swap 2025-11-15 12:08:05 -05:00
license.md update package 2018-02-24 21:31:32 -05:00
notes.md implement tab hopping. toolpath goes up and over tab instead of interrupting cut. 2025-11-14 18:26:50 -05:00
package.json bump rev 4.6.1 2026-01-17 21:52:20 -05:00
readme.md updated readme / release notes 2025-11-14 23:57:06 -05:00
release.md updated readme / release notes 2025-11-14 23:57:06 -05:00

Grid.Space Applications

GitHub commit activity GitHub package.json version (branch) GitHub package.json version (branch) GitHub package.json version (branch)

GitHub contributors GitHub last commit GitHub

Community

Discord -- Live Chat Forums -- Long Form and Archival Discussion YouTube -- Content when I have time

Free and Open Source

Kiri:Moto and Mesh:Tool are completely open source and free for use without restriction. Over 13 years in development, this passion project has grown well beyond its original scope. It has consumed most of my free time for many years. Please consider donating to support continued development GitHub sponsorship or PayPal.

GitHub Sponsors Donate

Documentation

Documentation -- Could really use help with this

Docs are build with Docusaurus and served using GitHub Pages.

You can build and view the docs locally with:

git clone git@github.com:GridSpace/grid-apps.git
cd grid-apps
npm run setup
npm run docs-dev

HTML5 Web Apps (Installable)

Grid.Space hosts several live versions of this code

Kiri:Moto is a browser-based Slicer for 3D printers, CNC mills, and Laser cutters

Mesh:Tool is a browser-based mesh repair and editing tool

Electron Builds (Desktop Binaries)

https://github.com/GridSpace/grid-apps/releases/

Click on "Assets" under the release name to reveal files

Linux x86 requires the following to run:

sudo apt -y install fuse
chmod 755 KiriMoto-linux-x86_64.AppImage
./KiriMoto-linux-x86_64.AppImage --no-sandbox

The Windows and Mac binaries are not signed, so you will need to jump through a few safety hoops to get them to open the first time.

Linux / Mac Developers

Testing Locally (with Docker)

git clone git@github.com:GridSpace/grid-apps.git
cd grid-apps
npm run setup
docker-compose -f src/dock/compose.yml up

Testing Locally (with Electron)

git clone git@github.com:GridSpace/grid-apps.git
cd grid-apps
npm run setup
npm run start

Testing Locally (with NodeJS)

git clone git@github.com:GridSpace/grid-apps.git
cd grid-apps
npm run setup
npm run dev

TrueNAS Via YAML

Apps > Discover Apps > Install via YAML

services:
  kirimoto:
    build:
      context: https://github.com/GridSpace/grid-apps.git#refs/tags/latest
      dockerfile: ./src/dock/Dockerfile
    ports:
      - "8080:8080"

For any default install...

Then open a browser to localhost:8080/kiri

Windows Developers

Follow the instructions in this issue comment.

Javascript Slicing APIs

A script include that injects a web worker into the page that will asynchronously perform any of Kiris slicing and gcode generation functions. And a frame messaging API for controlling Kiri:Moto inside an IFrame.