@syumai/goplayground
v0.1.6
Published
The Go Playground client for JavaScript written in TypeScript.
Downloads
8
Readme
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/goplayground
With CDN
import { GoPlayground } from "https://unpkg.com/@syumai/goplayground/index.js";
For Node.js
$ npm install --save @syumai/goplayground-node
Usage
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-node
Usage
goplayground-node fmt example.go # format src
goplayground-node run example.go # run src
goplayground-node share example.go # publish src
Prior works
- Implementation in Go: https://github.com/tenntenn/goplayground
License
MIT
Author
syumai