-
I've noticed quite a bit of action in /dev; how do I install & use that branch instead of the release? Since nue is beta anyhow, I'd rather use the latest beta than an old beta :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In short, there's no dev/edge release, so you'll have to install the dev version using git:
In one line: now you can use I've written this down from memory, so maybe I missed a step. Good luck. If you want to remove the dev version, use PS: if you are on windows, I think you'll have to rerun the PPS: expect bugs on the dev branch |
Beta Was this translation helpful? Give feedback.
In short, there's no dev/edge release, so you'll have to install the dev version using git:
bun rm -g nuekit
git clone [email protected]:nuejs/nue
cd nue
git switch dev
bun install
on project rootbun link
frompackages/nuekit
In one line:
bun rm -g nuekit; git clone [email protected]:nuejs/nue; cd nue; bun i; cd packages/nuekit; bun link
now you can use
nue
CLI globally.I've written this down from memory, so maybe I missed a step. Good luck.
If you want to remove the dev version, use
bun unlink
inpackages/nuekit
PS: if you are on windows, I think you'll have to rerun the
link
step each time, you pull fro…