Skip to content

joshiojas/LiveCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5a02530 · Jun 2, 2024

History

19 Commits
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024
Jun 2, 2024

Repository files navigation

LiveCode - Automatic Command Restarter with PTY

LiveCode is a command-line tool written in Go that allows you to run a command within a pseudo-terminal (PTY) and automatically restart it whenever file changes are detected in the current directory (or optionally, in specified subdirectories). This is particularly useful for development workflows where you want to see the effects of code changes immediately.

Features

  • PTY Support: Runs commands in a PTY to capture colored output and maintain interactive features.
  • Automatic Restart on File Changes: Restarts the command whenever files are created, modified, renamed, or deleted in the watched directory (or subdirectories).
  • Graceful Shutdown: Attempts to gracefully terminate the running command before restarting.
  • Configurable: You can specify the command to run and its arguments through command-line flags.
  • Recursive Watching (Optional): You can choose to watch subdirectories for changes as well.

Installation

Pre-built Binaries

curl -fsSL https://raw.githubusercontent.com/joshiojas/LiveCode/main/install.sh | bash

Deletion of Pre-built Binaries

curl -fsSL https://raw.githubusercontent.com/joshiojas/LiveCode/main/uninstall.sh | bash

Building From Source

  1. Prerequisites:

    • Go (version 1.22 or later) must be installed. You can download it from the official website.
  2. Building:

    • Clone the repository:
      git clone https://github.com/joshiojas/LiveCode.git
    • Navigate to the project directory and build the executable:
      cd LiveCode
      go get .
      go build -o LiveCode
    • (Optional) Move the LiveCode executable to a directory in your PATH for easy access.

Usage

livecode -cmd "<your-command>" [arguments]

if you want more information about the command you can use the following command:

livecode --help

About

A cli tool to hot reload all applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published