Popularity
6.4
Declining
Activity
0.0
Stable
418
36
43

Programming language: Go
License: MIT License
Tags: Web Frameworks    
Latest version: v0.3.0

neo alternatives and similar packages

Based on the "Web Frameworks" category.
Alternatively, view neo alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of neo or a related project?

Add another 'Web Frameworks' Package

README

Neo

Build Status GoDoc

Go Web Framework

Installation

# framework
go get github.com/ivpusic/neo

# CLI tool
go get github.com/ivpusic/neo/cmd/neo

Documentation

Project Site

API Documentation

Example

Create Neo application:

neo new myapp
cd myapp
package main

import (
    "github.com/ivpusic/neo"
)

func main() {
    app := neo.App()

    app.Get("/", func(ctx *neo.Ctx) (int, error) {
        return 200, ctx.Res.Text("I am Neo Programmer")
    })

    app.Start()
}

Run it:

neo run main.go

License

MIT


*Note that all licence references and agreements mentioned in the neo README section above are relevant to that project's source code only.