Description
Go Play Space is an experimental alternative Go Playground frontend that is built in Go itself (using GopherJS), a Go→JavaScript transpiler, and Vecty, a React-like frontend library for GopherJS). It features dynamic Go package help lookup, syntax highlighting with multiple themes, support for Fira Code font, and turtle graphics interpretation mode for even more fun. It uses the same sharing mechanism as the official Go Playground, meaning that one can use both playgrounds interchangeably with the same shared snippet IDs.
The Go Play Space alternatives and similar packages
Based on the "Go Tools" category.
Alternatively, view The Go Play Space alternatives based on common mentions on social networks and blogs.
-
Sonic
Sonic is a Go library for network and I/O programming that provides developers with a consistent asynchronous model, with a focus on achieving the lowest possible latency and jitter in Go. -
typex
[TOOL/CLI] - Filter and examine Go type structures, interfaces and their transitive dependencies and relationships. Export structural types as TypeScript value object or bare type representations. -
Viney's go-cache
A flexible multi-layer Go caching library to deal with in-memory and shared cache by adopting Cache-Aside pattern. -
gothanks
GoThanks automatically stars Go's official repository and your go.mod github dependencies, providing a simple way to say thanks to the maintainers of the modules you use and the contributors of Go itself. -
go-lock
go-lock is a lock library implementing read-write mutex and read-write trylock without starvation -
goroutines
It is an efficient, flexible, and lightweight goroutine pool. It provides an easy way to deal with concurrent tasks with limited resource. -
PDF to Image Converter Using Golang
This project will help you to convert PDF file to IMAGE using golang. -
go-james
DISCONTINUED. James is your butler and helps you to create, build, debug, test and run your Go projects -
docs
Automatically generate RESTful API documentation for GO projects - aligned with Open API Specification standard -
rescached
DISCONTINUED. [mirror] Resolver (DNS) cache daemon. See https://sr.ht/~shulhan/rescached [Moved to: https://github.com/shuLhan/rescached] -
channelize
A websocket framework to manage outbound streams. Allowing to have multiple channels per connection that includes public and private channels. -
modver
Compare two versions of a Go module to check the version-number change required (major, minor, or patchlevel), according to semver rules. -
IP2Location.io SDK
IP2Location.io Go SDK allows user to query for an enriched data set based on IP address and provides WHOIS lookup api that helps users to obtain domain information.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of The Go Play Space or a related project?
README
About Go Play Space
Go Play Space is an experimental alternative Go Playground frontend that is built in Go itself (using GopherJS), a Go→JavaScript transpiler, and Vecty, a React-like frontend library for GopherJS).
Try it: https://goplay.space
Go Play Space supports the Turtle graphics mode to help visualize algorithms and make learning experience more fun.
Features
- Syntax highlighting, auto-closing braces and quotes, proper undo/redo, auto indentation
- Smart help lookup: double-click on e.g. package keyword or Println function name in source code, and you will see the relevant help topic.
- Live syntax error checking
- Error line highlighting (both for syntax errors and for errors returned from the compiler)
- Ability to highlight lines and blocks of code (like on Github, but better!) — just click on the line numbers. Use Shift and Ctrl to modify the selection
- Keyboard shortcuts (see button captions)
- Support for several UI themes
- Support for Fira Code font (either the one installed in your system or a webfont)
go imports
is always run before running your code, so you don't usually have to worry about imports at all
Code execution is proxied to the official Go Playground, so your programs will work the same. Shared snippets are also stored on golang.org servers.
Running Locally
Download the package:
$ go get -u github.com/iafan/goplayspace/...
Compile both client-side code and server binary:
$ cd $GOPATH/src/github.com/iafan/goplayspace/bin
$ ./build-client && ./build-server
Run the server:
$ ./goplayspace
Then open http://localhost:8080/ in your browser.
Troubleshooting
If you have trouble compiling the client, please make sure you have the latest version of GopherJS installed by running go get -u github.com/gopherjs/gopherjs
(see #6)
Feedback
Feel free to provide your feedback, suggestions or bug reports here in the bug tracker, or message @afan in the Gophers Slack channel.
Credits
Gopher vector logo by Takuya Ueda, licensed under the Creative Commons 3.0 Attributions license and based on original artwork by Renee French. See https://github.com/golang-samples/gopher-vector
Go proverbs: Rob Pike
*Note that all licence references and agreements mentioned in the The Go Play Space README section above
are relevant to that project's source code only.