crunchcrunchcrunchstack
crunchcrunchcrunchstack copied to clipboard
Documentation?
This looks like a really good way to get started, but I'm missing instructions on how to run / debug / build…
@pieterclaerhout I did the following to get this up and running, please note that I haven't worked with Node.js (or any part of this stack) before. If you're starting from scratch like me:
- Install
nvm
:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
- Install the LTS version of Node.js:
nvm install v14.17.0
- Clone this repository.
- With
npm
, install the package and the dependencies specified in thepackage.json
file:
npm install
- Build:
npm run build
- Run the server:
go run main.go handle_greeter.go routes.go
- Browse to
localhost:8080
.
That is enough to get started! :smiley: