DEV Community

Alex Pliutau
Alex Pliutau

Posted on

Go Projects to contribute to during Hacktoberfest

Hi Gophers!

As you know Hacktoberfest 2018 has already started. And if you are a Go developer you probably want to know to which projects you can contribute. Let's use this #discuss post to collect different OSS Go projects.

Top comments (7)

Collapse
 
arschles profile image
Aaron Schlesinger

PRs, reviews and lots of other stuff welcome at the Athens project!

Check out issues labelled hacktoberfest and/or good-first-issue

And you can always chat with us in the #athens channel on the Gophers slack

We're a friendly, inclusive community and absolutely everyone is welcome, regardless of background, time zone, experience level, etc...

Collapse
 
theredspy15 profile image
Hunter Drum

I just started learning Go, and come up with Multi Go

I made a repo on GitHub, so if any other newcomers to the languages wanna work on it with me, they're welcome to

link: github.com/TheRedSpy15/Multi-Go

Collapse
 
jeffprestes profile image
Jeff Prestes

If you need to create Web applications using Go a project boilerplate can save much time.
Mercurius is a Go Web Application based on Go-Macaron framework. It includes support to MySQL/PostgreSQL/MSSQL and Mongo databases. Also OAuth and Template modules are included.

PRs are welcomed: github.com/novatrixtech/mercurius

Collapse
 
plutov profile image
Alex Pliutau
Collapse
 
plutov profile image
Alex Pliutau
Collapse
 
avelino profile image
Thiago Avelino

prest / prest

pREST is a way to serve a RESTful API from any databases written in Go

RESTful API pREST

Build Status GoDoc Go Report Card codecov Gitter Open Source Helpers

Serve a RESTful API from any PostgreSQL database

Postgres version

  • 9.4 or higher

Problem

There is PostgREST written in Haskell, but keeping Haskell software in production is not an easy job. With this need pREST was born. Read more.

Documentation

postgres.rest/ (source)



gofn / gofn

Function process via docker provider (serverless minimalist)

gofn

Build Status GoDoc Go Report Card codecov Join the chat at https://gitter.im/gofn/gofn Open Source Helpers

Function process via docker provider

Install

go get github.com/gofn/gofn

Example

package main
import (
    "context"
    "flag"
    "fmt"
    "log"
    "os"
    "runtime"
    "sync"
    "github.com/gofn/gofn"
    "github.com/gofn/gofn/iaas/digitalocean"
    "github.com/gofn/gofn/provision"
)
func main() {
    wait := &sync.WaitGroup{}
    contextDir := flag.String("contextDir", "./", "a string")
    dockerfile := flag.String("dockerfile", "Dockerfile", "a string")
    imageName := flag.String("imageName", "", "a string")
    remoteBuildURI := flag.String("remoteBuildURI", "", "a string")
    volumeSource := flag.String("volumeSource", "", "a string")
    volumeDestination := flag.String("volumeDestination", 

rumlang / rum

Functional language, easily extensible and possible (Lua features with LISP syntax and functional) to be embarked on software Go!

rum

Build Status Go Report Card Documentation license

Functional language, easily extensible and possible (Lua features with LISP syntax and functional) to be embarked on software Go!

History

Idealized in GopherCon Brasil 2017 (reason of the language being written in Go), had the purpose of being virtual machine of CLISP (development for fun and the founder team enjoys functional programming), after seeing that there was already some parser of CLISP written in Go we had a initiative to make a language with syntax like CLISP but with some own paradigms (such as asynchronous processing using goroutine underneath, thus joining what we have best in the Go).

Why Rum?

As the language was born in Canasvieiras (Florianópolis - Brazil) neighborhood in the seaside frequented by tourists having the pirate boat as a tourist attraction, we decided to give the name of the typical beverage of pirates for the language.

Why another lisp?

Install

go install github.com/rumlang/rum

Run

Collapse
 
plutov profile image
Alex Pliutau

Also Microsoft has a lot of Go repositories - opensource.microsoft.com/?sort=Awe.... You can create 1 meaningful PR to get a swag from MS.