All Projects → zamronypj → fano

zamronypj / fano

Licence: MIT License
Pascal web application framework

Programming Languages

pascal
1382 projects
NASL
115 projects

Projects that are alternatives of or similar to fano

fano
Pascal web application framework
Stars: ✭ 90 (+328.57%)
Mutual labels:  web-framework, freepascal, web-application-framework, object-pascal, fano, fano-framework
TLightFileStream
Implements a lightweight, high-performance, non-allocating advanced-record-based wrapper around the SysUtils file handling routines as an alternative to Classes.TFileStream.
Stars: ✭ 21 (+0%)
Mutual labels:  freepascal, object-pascal
Joy
A full stack web framework written in janet
Stars: ✭ 327 (+1457.14%)
Mutual labels:  web-framework, web-application-framework
Cutelyst
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
Stars: ✭ 671 (+3095.24%)
Mutual labels:  uwsgi, fastcgi
mif
MIF is a C++11 web-application framework designed for the backend micro-service development
Stars: ✭ 42 (+100%)
Mutual labels:  web-framework, web-application-framework
Revel
A high productivity, full-stack web framework for the Go language.
Stars: ✭ 12,463 (+59247.62%)
Mutual labels:  web-framework, web-application-framework
sgi
Socket Gateway Interface
Stars: ✭ 16 (-23.81%)
Mutual labels:  uwsgi, fastcgi
Simplify.Web
Moved to https://github.com/SimplifyNet. Simplify.Web is a lightweight and fast server-side .NET web-framework based on MVC and OWIN for building HTTP based web-applications, RESTful APIs etc.
Stars: ✭ 23 (+9.52%)
Mutual labels:  web-framework, web-application-framework
Fuga-Framework
Web Framework for Java
Stars: ✭ 15 (-28.57%)
Mutual labels:  web-framework, web-application-framework
xavier
Xavier is a small object-oriented XML library for Lazarus and Delphi
Stars: ✭ 38 (+80.95%)
Mutual labels:  freepascal, object-pascal
rust-cgi
Create CGI programmes in Rust with hyper's http types
Stars: ✭ 28 (+33.33%)
Mutual labels:  cgi
flaskage
Flaskage is a complete and carefully designed template for use with the Flask web framework.
Stars: ✭ 36 (+71.43%)
Mutual labels:  web-framework
slf4p
A simple logging facade for Object Pascal (Delphi and FPC)
Stars: ✭ 28 (+33.33%)
Mutual labels:  freepascal
grok
Grok: Now even cavemen can use Zope 3!
Stars: ✭ 20 (-4.76%)
Mutual labels:  web-application-framework
FastCGI
FastCGI client library for .NET
Stars: ✭ 23 (+9.52%)
Mutual labels:  fastcgi
Navigation
一款基于 Workerman 的 PHP Web 开发框架。
Stars: ✭ 20 (-4.76%)
Mutual labels:  web-framework
Photo-Effects
Photo Effects 🧪 Application which is built with Embarcadero Delphi FireMonkey
Stars: ✭ 22 (+4.76%)
Mutual labels:  object-pascal
ReduxDelphi
ReduxDelphi is a predictable state container for Delphi apps utilizing a unidirectional data flow. Inspired by https://github.com/reactjs/redux .
Stars: ✭ 33 (+57.14%)
Mutual labels:  object-pascal
mangooio
An Intuitive, Lightweight, High Performance Full Stack Java Web Framework.
Stars: ✭ 52 (+147.62%)
Mutual labels:  web-framework
rexsl
Java RESTful XSL-based Web Framework
Stars: ✭ 16 (-23.81%)
Mutual labels:  web-framework

Fano Framework

Web application framework for modern Pascal programming language. Learn more.

MIT License GitHub Release

Requirement

Installation

Install from Fano Command Line tool

Fano CLI is command line tool intended to simplify scaffolding web application, creating controllers, views, models, etc. It is recommended way to setup web application skeleton with Fano Framework.

$ fanocli --project-cgi=my-cool-app
$ cd my-cool-app
$ fanocli --mvc=Hello
$ ./build.sh

Install from sample application

You can clone sample application repositories that is available in Fano Framework documentation as base application skeleton.

Install from scratch with Git submodule

If you decide to start from scratch,

$ mkdir my-cool-app
$ cd my-cool-app
$ git init
$ git submodule add https://github.com/fanoframework/fano.git

This command will pull Fano Web Framework repository into fano directory inside your my-cool-app directory.

Install from scratch without Git submodule

Using git submodule requires you to have copy of Fano respository locked to specific commit in your application project directory structure. If you have multiple applications that uses Fano, each of them will have their own copy of Fano respository that may be locked to different commit version. Updating Fano repository in one application does not affect other applications. It is roughly similar to how Composer (PHP) or NPM (Node.js) works.

If you do not want this code duplication, you may clone Fano repository as usual in a directory, then, in your each application project configuration, you tell Free Pascal, directory where to search Fano units.

This approach, however, has disadvantage. When you update your Fano repository, all your applications that depends on Fano will be affected. If newer version of Fano repository introduces breaking changes, application that requires older version of Fano repository may fail.

Versioning Number

Fano Framework follows Semantic Versioning 2.0.0.

Windows User

Fano Framework is not yet supported on Windows.

Roadmap

See Projects for more information about what is currently being developed or planned.

Copyright Notice

See NOTICE.txt

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].