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
2025-10-13 11:45:40 -04:00
.github restore prod-dryrun for github workflows 2025-07-09 13:18:17 -04:00
apps remove old obsolete startup options 2020-06-16 22:53:02 -04:00
bin add bundler debugging and cmd line compress 2025-10-13 01:04:28 -04:00
conf updated links for windows builds 2025-07-07 23:41:00 -04:00
docs Merge pull request #390 from GridSpace/docs 2025-06-18 17:22:27 -06:00
mods relax drill circularity for lower poly. add ; bc no ts syntax 2025-08-31 22:13:42 -04:00
sample update sample module readme 2022-11-13 11:22:50 -05:00
src add more servce worker boot controls 2025-10-13 11:45:14 -04:00
web add more servce worker boot controls 2025-10-13 11:45:14 -04:00
.gitignore exclude bundle from itself. add ability to force SW cache update 2025-10-12 20:22:53 -04:00
app-el.js fix electron builds 2025-07-07 22:29:45 -04:00
app.js add more servce worker boot controls 2025-10-13 11:45:14 -04:00
contributing.md move src/kiri/* to src/kiri/core and src/kiri-*/ to src/kiri/* and updated all imports 2025-07-09 13:00:52 -04:00
license.md update package 2018-02-24 21:31:32 -05:00
notes.md fix legacy png lib to work with esm build 2025-09-30 16:30:53 -04:00
package.json bump rev 4.3.3 2025-10-12 19:25:06 -04:00
readme.md add TrueNAS install instructions in readme 2025-06-27 01:21:01 -04:00
release.md update release notes 2024-09-12 00:10:59 -04: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
BlueSky -- Like the Good 'Ol Days
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 12 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.