stackenv 0.1.2

Native, zero-container multi-project dev environment manager. No Docker, no VMs.
1
2
3
4
5
6
7
8
9
10
11
12
13
[project]
name = "node-api"
domain = "node-api.localhost"

[language]
node = "20.11.0"

[run]
# node --watch (built into Node 18+) -- stack spawns and supervises it
# directly. Compare with examples/fastapi-dev, which uses [run].external
# to run its own dev server by hand instead.
command = "node --watch server.js"
port = 3000