github.com/lenfree/buffalo@v0.7.3-0.20170207163156-891616ea4064/README.md (about)

     1  # Buffalo [![GoDoc](https://godoc.org/github.com/gobuffalo/buffalo?status.svg)](https://godoc.org/github.com/gobuffalo/buffalo) [![Build Status](https://travis-ci.org/gobuffalo/buffalo.svg?branch=master)](https://travis-ci.org/gobuffalo/buffalo) [![Code Climate](https://codeclimate.com/github/gobuffalo/buffalo/badges/gpa.svg)](https://codeclimate.com/github/gobuffalo/buffalo) [![Go Report Card](https://goreportcard.com/badge/github.com/gobuffalo/buffalo)](https://goreportcard.com/report/github.com/gobuffalo/buffalo)
     2  
     3  Buffalo is a Go web development eco-system. Designed to make the life of a Go web developer easier.
     4  
     5  Buffalo starts by generating a web project for you that already has everything from front-end (JavaScript, SCSS, etc...) to back-end (database, routing, etc...) already hooked up and ready to run. From there it provides easy APIs to build your web application quickly in Go.
     6  
     7  Buffalo isn't just a framework, it's a holistic web development environment and project structure that lets developers get straight to the business of, well, building their business.
     8  
     9  > I :heart: web dev in go again - Brian Ketelsen
    10  
    11  ## Documentation
    12  
    13  Please visit [http://gobuffalo.io](http://gobuffalo.io) for the latest documentation, examples, and more.
    14  
    15  ## Installation
    16  
    17  ```text
    18  $ go get -u github.com/gobuffalo/buffalo/buffalo
    19  ```
    20  
    21  ## Generating a new Project
    22  
    23  Buffalo aims to make building new web applications in Go as simple as possible, and what could be more simple than a new application generator?
    24  
    25  ```text
    26  $ buffalo new <name>
    27  ```
    28  
    29  That will generate a whole new Buffalo application that is ready to go. It'll even run `go get` for you to make sure you have all of the necessary dependencies needed to run your application.
    30  
    31  To see a list of available flags for the `new` command, just check out its help.
    32  
    33  ```text
    34  $ buffalo help new
    35  ```
    36  
    37  ## Running your application
    38  
    39  Buffalo is Go "standards" compliant. That means you can just build your binary and run it. It's that simple.
    40  
    41  ### Running your application in Development
    42  
    43  One of the downsides to Go development is the lack of code "reloading". This means as you change your code you need to manually stop your application, rebuild it, and then restart it. Buffalo finds this is annoying and wants to make life better for you.
    44  
    45  ```text
    46  $ buffalo dev
    47  ```
    48  
    49  The `dev` command will watch your `.go` and `.html` files by default, rebuild, and restart your binary for you so you don't have to worry about such things. Just run the `dev` command and start coding.
    50  
    51  ## Testing your application
    52  
    53  Just like running your application, Buffalo doesn't stop you from using the standard Go tools for testing. Buffalo does ship with a `test` command that will run all of your tests while conveniently skipping that pesky old `./vendor` directory!
    54  
    55  ```text
    56  $ buffalo test
    57  ```
    58  
    59  ## Shoulders of Giants
    60  
    61  Buffalo would not be possible if not for all of the great projects it depends on. Please see [SHOULDERS.md](SHOULDERS.md) to see a list of them.
    62  
    63  ### Templating
    64  
    65  [github.com/gobuffalo/velvet](https://github.com/gobuffalo/velvet) - This templating package was chosen over the standard Go `html/template` package for a variety of reasons. The biggest of which is that it is significantly more flexible and easy to work with. It also has the added factor of being familiar to those who have worked with "Handlebars" or "Mustache" templates before.
    66  
    67  ### Routing
    68  
    69  [github.com/gorilla/mux](https://github.com/gorilla/mux) - This router was chosen because of its stability and flexibility. There might be faster routers out there, but this one is definitely the most powerful!
    70  
    71  ### Task Runner (Optional)
    72  
    73  [github.com/markbates/grift](https://github.com/markbates/grift) - If you're familiar with Rake tasks from Ruby, you'll be right at home using Grift. This package was chosen to allow for the easy running of simple, and common, tasks that most web applications need. Think things like seeding a database or taking in a CSV file and generating database records. Buffalo ships with an example `routes` task that prints off the defined routes and the function that handles those requests.
    74  
    75  ### Models/ORM (Optional)
    76  
    77  [github.com/markbates/pop](https://github.com/markbates/pop) - Accessing databases is nothing new in web applications. Pop, and its command line tool, Soda, were chosen because they strike a nice balance between simplifying common tasks, being idiomatic, and giving you the flexibility you need to built your app. Pop and Soda share the same core philosphies as Buffalo so they were a natural choice.
    78  
    79  ### Sessions, Cookies, Websockets, and more...
    80  
    81  [github.com/gorilla](https://github.com/gorilla) - The Gorilla toolkit is a great set of packages designed to improve upon the standard libary for a variety of web-related packages. With these high quality packages Buffalo is able to keep its "core" code to a minimum and focus on its goal of glueing them all together to make your life better.
    82  
    83  ## Benchmarks
    84  
    85  Oh, yeah, everyone wants benchmarks! What would a web framework be without its benchmarks? Well, guess what? I'm not giving you any! That's right. This is Go! I assure you that it is plenty fast enough for you. If you want benchmarks you can either a) checkout any benchmarks that the [GIANTS](SHOULDERS.md) Buffalo is built upon have published, or b) run your own. I have no interest in playing the benchmark game, and neither should you.
    86  
    87  ## Contributors
    88  
    89  * Mark Bates
    90  * Antonio Pagano
    91  * Stanislas Michalak
    92  * lumost
    93  * Philip I. Thomas
    94  * Brian Downs
    95  * Cody Oss
    96  * Brian Scott
    97  * arif emre
    98  * amedeiros
    99  * Mark Lussier
   100  * Amós Oviedo
   101  * Dan Kleiman
   102  * Michael Henderson
   103  * Steven Klassen
   104  * Ivan Menshykov
   105  * Kenny Grant
   106  * Daniel Heckrath
   107  * Stuart Ellis