All Projects → fanoframework → fano

fanoframework / fano

Licence: MIT license
Pascal web application framework

Projects that are alternatives of or similar to fano

fano
Pascal web application framework
Stars: ✭ 21 (-76.67%)
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 (-76.67%)
Mutual labels:  freepascal, object-pascal, free-pascal, free-pascal-3
Fuga-Framework
Web Framework for Java
Stars: ✭ 15 (-83.33%)
Mutual labels:  web-framework, mvc-framework, web-application-framework
JPLib
A small library of Pascal units needed to compile my projects published on GitHub.
Stars: ✭ 41 (-54.44%)
Mutual labels:  freepascal, free-pascal
setup-lazarus
Set up your GitHub Actions workflow with a specific version of Lazarus
Stars: ✭ 29 (-67.78%)
Mutual labels:  freepascal, free-pascal
DfmExtractor
Small command line utility which allows you to extract DFM, LFM and FRM forms from executable files compiled by Delphi, Lazarus and CodeTyphon.
Stars: ✭ 22 (-75.56%)
Mutual labels:  freepascal, free-pascal
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 (-74.44%)
Mutual labels:  web-framework, web-application-framework
mif
MIF is a C++11 web-application framework designed for the backend micro-service development
Stars: ✭ 42 (-53.33%)
Mutual labels:  web-framework, web-application-framework
Joy
A full stack web framework written in janet
Stars: ✭ 327 (+263.33%)
Mutual labels:  web-framework, web-application-framework
Aah
A secure, flexible, rapid Go web framework
Stars: ✭ 647 (+618.89%)
Mutual labels:  web-framework, mvc-framework
pascal-bindings-for-c
How to use libraries created in C with Pascal
Stars: ✭ 24 (-73.33%)
Mutual labels:  object-pascal, free-pascal
Cakephp
CakePHP: The Rapid Development Framework for PHP - Official Repository
Stars: ✭ 8,453 (+9292.22%)
Mutual labels:  web-framework, mvc-framework
deskew
Deskew is a command line tool for deskewing scanned text documents. It uses Hough transform to detect "text lines" in the image. As an output, you get an image rotated so that the lines are horizontal.
Stars: ✭ 127 (+41.11%)
Mutual labels:  object-pascal, free-pascal
xavier
Xavier is a small object-oriented XML library for Lazarus and Delphi
Stars: ✭ 38 (-57.78%)
Mutual labels:  freepascal, object-pascal
shivneri
Component based MVC web framework based on fort architecture targeting good code structures, modularity & performance.
Stars: ✭ 21 (-76.67%)
Mutual labels:  web-framework, mvc-framework
Actframework
An easy to use Java MVC server stack
Stars: ✭ 690 (+666.67%)
Mutual labels:  web-framework, mvc-framework
Revel
A high productivity, full-stack web framework for the Go language.
Stars: ✭ 12,463 (+13747.78%)
Mutual labels:  web-framework, web-application-framework
Sanic
Async Python 3.7+ web server/framework | Build fast. Run fast.
Stars: ✭ 15,660 (+17300%)
Mutual labels:  web-framework
Flask
The Python micro framework for building web applications.
Stars: ✭ 57,408 (+63686.67%)
Mutual labels:  web-framework
Scalatra
Tiny Scala high-performance, async web framework, inspired by Sinatra
Stars: ✭ 2,529 (+2710%)
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].