All Projects → ivpusic → Neo

ivpusic / Neo

Licence: mit
Go Web Framework

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Neo

Material Framework
[Unmaintained] An easy to use material design based framework.
Stars: ✭ 383 (-6.59%)
Mutual labels:  framework
Vugu
Vugu: A modern UI library for Go+WebAssembly (experimental)
Stars: ✭ 4,251 (+936.83%)
Mutual labels:  framework
Tentcss
🌿 A CSS survival kit. Includes only the essentials to make camp.
Stars: ✭ 400 (-2.44%)
Mutual labels:  framework
Ef.js
The timeless, future facing front-end framework
Stars: ✭ 385 (-6.1%)
Mutual labels:  framework
Di
Dependency injection container in go (golang)
Stars: ✭ 390 (-4.88%)
Mutual labels:  framework
Githubupdates
Cocoa framework to install application updates from GitHub releases.
Stars: ✭ 393 (-4.15%)
Mutual labels:  framework
Hyperapp
The tiny framework for building hypertext applications.
Stars: ✭ 18,724 (+4466.83%)
Mutual labels:  framework
Nameko
Python framework for building microservices
Stars: ✭ 4,182 (+920%)
Mutual labels:  framework
Shadowview
An iOS Library that makes shadows management easy on UIView.
Stars: ✭ 391 (-4.63%)
Mutual labels:  framework
Puzzle Js
⚡ Micro frontend framework for scalable and blazing fast websites.
Stars: ✭ 398 (-2.93%)
Mutual labels:  framework
Mam mol
$mol - fastest reactive micro-modular compact flexible lazy ui web framework.
Stars: ✭ 385 (-6.1%)
Mutual labels:  framework
Mip
[Deprecated] 请查看 mip2
Stars: ✭ 390 (-4.88%)
Mutual labels:  framework
Larapi
An API-friendly fork of Laravel. Authentication, error handling, resource filtering, sorting, pagination and much more included
Stars: ✭ 397 (-3.17%)
Mutual labels:  framework
Equal
🧬 Equal is a Vue 3 UI library based on TypeScript
Stars: ✭ 381 (-7.07%)
Mutual labels:  framework
Framework
.NET Core Extensions and Helper NuGet packages.
Stars: ✭ 399 (-2.68%)
Mutual labels:  framework
Qpc
QP/C real-time embedded framework/RTOS for embedded systems based on active objects (actors) and hierarchical state machines
Stars: ✭ 379 (-7.56%)
Mutual labels:  framework
Bach
Bach Testing Framework
Stars: ✭ 392 (-4.39%)
Mutual labels:  framework
Peasy.net
A business logic micro-framework for .NET and .NET Core
Stars: ✭ 406 (-0.98%)
Mutual labels:  framework
Air
An ideally refined web framework for Go.
Stars: ✭ 402 (-1.95%)
Mutual labels:  framework
Ozzo Routing
An extremely fast Go (golang) HTTP router that supports regular expression route matching. Comes with full support for building RESTful APIs.
Stars: ✭ 398 (-2.93%)
Mutual labels:  framework

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].