Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jorgechato/burrow

Go API First eco-system. Design to focus on writing your app without needing to reinvent the wheel.
https://github.com/jorgechato/burrow

go golang

Last synced: 27 days ago
JSON representation

Go API First eco-system. Design to focus on writing your app without needing to reinvent the wheel.

Awesome Lists containing this project

README

        

# Burrow

**No longer under maintenance, moving into graphQL systems.**

Project inspired in django and buffalo.
Burrow is a Go API First eco-system (not a framework jet). Design to focus on
writing your app without needing to reinvent the wheel.

## Installation

```bash
$ go get -u -v github.com/jorgechato/burrow/burrow
```

## Start a new Project

It's a piece of cake, this is what you should think of start an API First
project in Go. The generator is the key of success.

```bash
$ burrow startproject
```

## Start an App

Modularity is what makes a pleasure to work in different projects. The
applications are single packages you can use not only in your current project
but export and use them in as many projects as you want. Type once and use it
anywhere.

```bash
$ burrow startapp
```