Skip to content

Latest commit

 

History

History

README.md

electron-apps

Helps building new electron apps

Dependencies

  • Node.js — Required to run and build the forge. Recommended version: >=18.
  • hyper-forge-cli — The CLI tool used to run forges. Install it globally with:
npm install -g hyper-forge-cli

Optional / Recommended

  • Git — To clone repositories and manage version control.
  • A modern terminal — For the best experience (e.g., Windows Terminal, iTerm2, etc.).

Installing

Manually

  1. Clone this repository.
  2. Open your terminal.
  3. Navigate into the forge's directory.
  4. Type npm install to install the dependencies.
  5. Type npm run build to compile the forge.
  6. Type npm link to make this forge globally available via npm.

How to use

  1. Open your terminal.
  2. Navigate to the directory where you want to create your new forge (e.g., C:\\my-forges).
  3. Run the Hyper Forge CLI by typing hf.
  4. Choose Run a forge from the options.
  5. Select this forge by name.
  6. Pick the task you want to run.
  7. You're done!

How to debug this forge

  • TO-DO