diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-25 21:08:29 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-25 21:08:29 +0200 |
| commit | d1941a802743a6314107968b2573cc0d742c35ae (patch) | |
| tree | d4a27ce160397ec2e05c2c2a3e268b783a317349 /Justfile | |
| parent | 089888a18d10a4cf8eeacf1ad2b4535ed641268d (diff) | |
Use Node.js for webserver instead of Python
Added serve.js - simple static file server using Node's http module.
Updated Justfile to use node serve.js for consistency.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'Justfile')
| -rw-r--r-- | Justfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,10 +9,10 @@ build: # Start webserver and open in Firefox open: - python -m http.server 9000 & + node serve.js 9000 & sleep 1 firefox http://localhost:9000 # Stop the webserver stop: - pkill -f "http.server 9000" || true + pkill -f "node serve.js" || true |
