matthewmueller / joy

A delightful Go to Javascript compiler (ON HOLD)
https://mat.tm/joy
GNU General Public License v3.0
1.32k stars 35 forks source link

[Question] Installation on windows #90

Closed ericmdantas closed 6 years ago

ericmdantas commented 6 years ago

Hey there! Awesome project and concept.

I was wondering if there's a way to install joy on windows? I couldn't do it through go get or anything similar.

tryy3 commented 6 years ago

Windows currently have some issues, it's not hard to install but when running you will need to keep a few things in mind.

So to install it easiest way is to run this commands: go get github.com/matthewmueller/joy go get github.com/matthewmueller/joy/cmd/joy

The problem with windows is that it has a "window controller" program, for game controllers, joysticks etc. Which happens to be called "joy" so even once you have installed joy, it wont run when you try to run the command "joy".

The easiest solution is probably to just rename the binary file to something like joyc in your $GOPATH/bin folder.

ericmdantas commented 6 years ago

Thanks, @tryy3!