close
The Wayback Machine - https://web.archive.org/web/20190501151555/https://github.com/goby-lang/goby
Skip to content
Goby - Yet another programming language written in Go
Branch: master
Clone or download
st0012 Merge pull request #768 from TaigaMikami/master
Fix type in contribute note :)
Latest commit b88b72d Apr 22, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
Image .github Update issue template. Aug 25, 2017
Image cmd/binder vm,cmd/binder,igb,compiler/parser: simplify `x = x <op> y` to `x <op>… Sep 13, 2018
Image compiler Instructions refactor (#756) Nov 24, 2018
Image igb Integrate checkDoubleQuoteOpen and checkSingleQuoteOpen to checkOpenQ… Jan 26, 2019
Image lib Add Ripper class Jul 22, 2018
Image native
Image samples We now support serializing custom types with custom config. Feb 27, 2018
Image snap Make the snap classic (https://docs.snapcraft.io/reference/confinement) Oct 31, 2017
Image specs Add binding generator Jul 13, 2018
Image test_fixtures Add integration test for goby test command. Mar 14, 2018
Image vendor Merge branch 'binder' of github.com:eliothedeman/goby into binder Jun 29, 2018
Image vm Merge branch 'master' into mw-add-inspect Mar 12, 2019
Image wiki Add preview png for Goby introduction slide Apr 28, 2018
Image .codeclimate.yml Excluse vendor file from CI check. Jul 23, 2017
Image .gitattributes Change extension name from 'ro' to 'gb' May 18, 2017
Image .gitignore
Image .travis.yml Travis: use built-in support for forks (`go_import_path`) Apr 9, 2019
Image CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md Jun 9, 2017
Image CONTRIBUTING.md Fix type in contribute note :) Apr 21, 2019
Image Dockerfile Update Dockerfile for Go 1.11 (#752) Nov 1, 2018
Image Gopkg.lock add jennifer dep Jul 2, 2018
Image Gopkg.toml add jennifer dep Jul 2, 2018
Image LICENSE Initial commit Feb 8, 2017
Image Makefile rework benchmark running Apr 29, 2018
Image README.md minor readme updates (#750) Oct 31, 2018
Image _config.yml Set theme jekyll-theme-architect May 4, 2017
Image benchmark.rb rework benchmark running Apr 29, 2018
Image bzt.yml Setup Taurus and use apache benchmark to run load testing on CI. Jun 7, 2017
Image codecov.yml Excluse vendor file from CI check. Jul 23, 2017
Image goby.go Add --profile-mem flag and rename -p to --profile-cpu Aug 19, 2018
Image goby_test.go Unify error messages for instance methods in file.go Sep 2, 2018
Image travis.sh Run benchmark after tests. Jul 1, 2018

README.md

Goby

Image Build Status GoDoc Go Report Card codecov Readme Score Snap Status Open Source Helpers Reviewed by Hound

Goby is an object-oriented interpreter language deeply inspired by Ruby as well as its core implementation by 100% pure Go. Moreover, it has standard libraries to provide several features such as the Plugin system. Note that we do not intend to reproduce whole of the honorable works of Ruby syntax/implementation/libraries.

One of our goal is to provide web developers a sort of small and handy environment that mainly focusing on creating API servers or microservices. For this, Goby includes the following native features:

  • Robust thread/channel mechanism powered by Go's goroutine
  • Builtin high-performance HTTP server
  • Builtin database library (currently only support PostgreSQL adapter)
  • JSON support
  • Plugin system that can load existing Go packages dynamically (Only for Linux and MacOS right now)
  • Accessing Go objects from Goby directly

Note: Goby had formerly been known as "Rooby", which was renamed in May 2017.

Table of contents

Demo screen and sample Goby app

Image

New! Check-out our sample app built with Goby. Source code is also available here.

Structure

Image

Aspects

Goby has several aspects: language specification, design of compiler and vm, implementation (just one for now), library, and the whole of them. See more

We are optimizing and expanding Goby all the time. Toward the first release, we've been focusing on implementing Goby first.

Major Features

  • Plugin system
    • Allows using Go libraries (packages) dynamically
    • Allows calling Go's methods from Goby directly (only on Linux for now)
  • Builtin multi-threaded server and DB library
  • REPL (run goby -i)

Here's a complete list of all the features.

Current roadmap

See wiki: Current roadmap

Installation

Confirmed Goby runs on Mac OS and Linux for now. Try Goby on Windows and let us know the result.

A. Via Homebrew (binary installation for Mac OS)

Note: Please check the latest release before installing Goby via Homebrew

brew tap goby-lang/goby
brew install goby

In the case, $GOBY_ROOT is automatically configured.

B. From Source

Try this if you'd like to contribute Goby! Skip 1 if you already have Golang in your environment.

  1. Prepare Golang environment
    • Install Golang >= 1.10
    • Make sure $GOPATH in your shell's config file( like .bashrc) is correct
    • Add you $GOPATH/bin to $PATH
  2. Run go get github.com/goby-lang/goby
  3. Set the Goby project's exact root path $GOBY_ROOT manually, which should be:
$GOPATH/src/github.com/goby-lang/goby

C. Installation on a Linux system

In order to install Go, Goby and PostgreSQL on a Linux system, see the wiki page.

Verifying Goby installation

  1. Run goby -v to see the version.
  2. Run goby -i to launch igb REPL.
  3. Type require "uri" in igb.

FYI: You can just run brew test goby to check Homebrew installation.

If you have any issue installing Goby, please let us know via GitHub issues

Using Docker

Goby has official docker image as well. You can try the Plugin System using docker.

Syntax highlighting

The Goby syntax is currently a subset of the Ruby one, with an exception (get_block), therefore, it's possible to attain syntax highlighting on any platform/editor by simply switching it to Ruby for the currently opened file.

Sublime Text 3

Sublime Text 3 users can use the Only Goby package, by typing the following in a terminal:

git clone git@github.com:saveriomiroddi/only-goby-for-sublime-text "$HOME/.config/sublime-text-3/Packages/only-goby-for-sublime-text"

this will automatically apply the Goby syntax highlighting to the .gb files.

Vim

Vim users can use the vim-goby-syntax-highlighting definition, by typing the following in a terminal:

mkdir -p "$HOME/.vim/syntax"
wget -O "$HOME/.vim/syntax/goby.vim" https://raw.githubusercontent.com/saveriomiroddi/vim-goby-syntax-highlighting/master/goby.vim
echo 'au BufNewFile,BufRead *.gb    setf goby' >> "$HOME/.vim/filetype.vim"

this will automatically apply the Goby syntax highlighting to the .gb files.

Sample codes

More sample Goby codes can be found in sample directory.

Joining to Goby

Join us on Slack! Image

See the guideline.

Maintainers

  • @st0012
  • @hachi8833
  • @saveriomiroddi
  • @ear7h

Designer

Support Us

Donations

Support us with a monthly donation and help us continue our activities. [Become a backer]

Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image Image

Sponsors

Image Image Image Image Image Image Image Image Image Image

Powered by

JetBrains Goland

Supporting Goby by sending your first PR! See contribution guideline

Or support us on opencollective

References

The followings are the essential resources to create Goby; I highly recommend you to check them first if you'd be interested in building your own languages:

You can’t perform that action at this time.