0.1.6 • Published 5 years ago
@syumai/goplayground v0.1.6
goplayground-js
- The Go Playground API client for Browsers / Node.js
- Command line tool for Node.js is also available.
Installation
For Browsers
With npm
$ npm install --save @syumai/goplaygroundWith CDN
import { GoPlayground } from "https://unpkg.com/@syumai/goplayground/index.js";For Node.js
$ npm install --save @syumai/goplayground-nodeUsage
import { GoPlayground } from "@syumai/goplayground"; // or "@syumai/goplayground-node"
const src = `package main
func main() {}`
const gp = new GoPlayground();
// format src
await gp.format(src);
// run src
await gp.compile(src);
// publish src
await gp.share(src);Use goplayground-node as a CLI tool
Installation
$ npm install -g @syumai/goplayground-nodeUsage
goplayground-node fmt example.go # format src
goplayground-node run example.go # run src
goplayground-node share example.go # publish srcPrior works
- Implementation in Go: https://github.com/tenntenn/goplayground
License
MIT
Author
syumai