Skip to content
/ fire Public

Fire is a web framework written in Mojo (πŸ”₯) with some Python (🐍) magic (✨)

Notifications You must be signed in to change notification settings

igorgue/fire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

50 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

fire πŸ”₯

A web framework written in Mojo.

NOTE: This is a work in progress. It is not ready for production use.

example

from fire import Request, Response, app, route as r


fn index(request: Request) -> Response:
    # TODO: add response attributes
    return Response()


fn posts(request: Request) -> Response:
    return Response()


fn main():
    r["/"](index)
    r["/posts"](posts)

    app.run()

About

Fire is a web framework written in Mojo (πŸ”₯) with some Python (🐍) magic (✨)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages