All Projects → iafan → Goplayspace

iafan / Goplayspace

Licence: other
Advanced Go Playground frontend written in Go, with syntax highlighting, turtle graphics mode, and more

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Goplayspace

Vecty
Vecty lets you build responsive and dynamic web frontends in Go using WebAssembly, competing with modern web frameworks like React & VueJS.
Stars: ✭ 2,161 (+182.48%)
Mutual labels:  gopherjs, frontend
Godom
Make DOM manipulation in Go as similar to JavaScript as possible. (via GopherJS or WebAssembly)
Stars: ✭ 125 (-83.66%)
Mutual labels:  gopherjs, frontend
Frontend Cheat Sheets
Collection of cheat sheets(HTML, CSS, JS, Git, Gulp, etc.,) for your frontend development needs & reference
Stars: ✭ 604 (-21.05%)
Mutual labels:  frontend
Guide
🍄 指北,A front end style guide.
Stars: ✭ 727 (-4.97%)
Mutual labels:  frontend
Design System React
Salesforce Lightning Design System for React
Stars: ✭ 676 (-11.63%)
Mutual labels:  frontend
Osu Web
the browser-facing portion of osu!
Stars: ✭ 610 (-20.26%)
Mutual labels:  frontend
Iview
A high quality UI Toolkit built on Vue.js 2.0
Stars: ✭ 23,930 (+3028.1%)
Mutual labels:  frontend
Programming Challenges
Algorithmic, Data Structures, Frontend and Pentest - Programming challenges and competitions to improve knowledge.
Stars: ✭ 592 (-22.61%)
Mutual labels:  frontend
Embetty
🐙 Embetty displays remote content like tweets or YouTube videos without compromising your privacy.
Stars: ✭ 759 (-0.78%)
Mutual labels:  frontend
Hippy
Hippy is designed for Web developer to easily build cross-platform and high-performance awesome apps. 👏
Stars: ✭ 6,234 (+714.9%)
Mutual labels:  frontend
Frontend Case Studies
💼 A curated list of technical talks and articles about real world enterprise frontend development
Stars: ✭ 6,290 (+722.22%)
Mutual labels:  frontend
Kvision
Object oriented web framework for Kotlin/JS
Stars: ✭ 658 (-13.99%)
Mutual labels:  frontend
Nerv
A blazing fast React alternative, compatible with IE8 and React 16.
Stars: ✭ 5,409 (+607.06%)
Mutual labels:  frontend
Repractise
RePractise
Stars: ✭ 695 (-9.15%)
Mutual labels:  frontend
Awesome Svelte Resources
[deprecated for svelte-society/sveltesociety.dev] useful resources for Svelte v3+
Stars: ✭ 607 (-20.65%)
Mutual labels:  frontend
Mern Course Bootcamp
Complete Free Coding Bootcamp with the MERN Stack
Stars: ✭ 730 (-4.58%)
Mutual labels:  frontend
Angular Springboot Rest Jwt
Springboot, Angular and JWT security - Example Project based on Northwind Order Processing
Stars: ✭ 603 (-21.18%)
Mutual labels:  frontend
Nanohtml
🐉 HTML template strings for the Browser with support for Server Side Rendering in Node.
Stars: ✭ 651 (-14.9%)
Mutual labels:  frontend
Aws Boilerplate
Opinionated full stack web app's boilerplate, ready to be deployed to AWS platform.
Stars: ✭ 682 (-10.85%)
Mutual labels:  frontend
Front End Career
A career guide to Front End Developers
Stars: ✭ 765 (+0%)
Mutual labels:  frontend

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

demo

Go Play Space supports the Turtle graphics mode to help visualize algorithms and make learning experience more fun.

draw mode demo

Features

  1. Syntax highlighting, auto-closing braces and quotes, proper undo/redo, auto indentation
  2. 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.
  3. Live syntax error checking
  4. Error line highlighting (both for syntax errors and for errors returned from the compiler)
  5. 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
  6. Keyboard shortcuts (see button captions)
  7. Support for several UI themes
  8. Support for Fira Code font (either the one installed in your system or a webfont)
  9. 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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].