The epicshop CLI installs, runs, and updates Epic Workshop repositories on
your machine.
It’s the recommended entry point for learners.
npm install -g epicshop
Or run without installing:
npx epicshop init
epicshop init
Inside a workshop directory:
epicshop start
Or start a specific workshop you’ve added:
epicshop start <workshop>
epicshop add <repo-name> [destination]: clone a workshop from the
epicweb-dev GitHub orgepicshop list: list your workshopsepicshop open: open a workshop in your editorepicshop update: pull the latest workshop changesepicshop warm: warm caches for faster workshop startupEPICSHOP_APP_LOCATION: path to the @epic-web/workshop-app directoryEPICSHOP_EDITOR: preferred editor for epicshop openNODE_DEBUG: debug logging (see repo docs)This package also exports ESM entrypoints:
import { start } from 'epicshop/start'
import { update } from 'epicshop/update'
import { warm } from 'epicshop/warm'
https://github.com/epicweb-dev/epicshop/tree/main/docs/cli.mdhttps://github.com/epicweb-dev/epicshop/tree/main/docs/debug-logging.mdGPL-3.0-only.