Difference between revisions of "Brook for Free Pascal"

From Free Pascal wiki
Jump to navigationJump to search
m (grammar)
Line 18: Line 18:
 
= Plugins =
 
= Plugins =
  
* '''[https://github.com/silvioprog/dopf dOPF]''' – This plugin is sleek, intuitive and fast object persistence for faster and easier database development.
+
* '''[https://github.com/silvioprog/dopf dOPF]''' – This plugin provides sleek, intuitive and fast object persistence for faster and easier database development.
* '''[https://github.com/silvioprog/rutils RUtils]''' – This plugin offers some general purpose routines on string conversions, parsings, encodings and others.
+
* '''[https://github.com/silvioprog/rutils RUtils]''' – This plugin offers some general purpose routines for string conversion, parsing, encoding and more.
 
* '''[http://silvioprog.github.io/jtemplate JTemplate]''' – This plugin helps you to fill variables in a template file.
 
* '''[http://silvioprog.github.io/jtemplate JTemplate]''' – This plugin helps you to fill variables in a template file.
* '''[https://github.com/leledumbo/QTemplate QTemplate]''' – This plugin implements an alternative to FPTemplate engine.
+
* '''[https://github.com/leledumbo/QTemplate QTemplate]''' – This plugin implements an alternative to the FPTemplate engine.
* '''[https://github.com/silvioprog/easyrss EasyRSS]''' – This plugin is the easiest way of Pascal developers provide news updating services in their applications.
+
* '''[https://github.com/silvioprog/easyrss EasyRSS]''' – This plugin is the easiest way for Pascal developers to provide news updating services in their applications.
* '''[https://github.com/silvioprog/xmailer XMailer]''' – This plugin offers a really simple way to send e-mails using Free Pascal..
+
* '''[https://github.com/silvioprog/xmailer XMailer]''' – This plugin offers a really simple way to send e-mail using Free Pascal.
* '''[https://github.com/silvioprog/algex AlgEx]''' – This plugin helps you to process algebric expressions passed as string.
+
* '''[https://github.com/silvioprog/algex AlgEx]''' – This plugin helps you to process algebraic expressions passed as strings.
* '''[https://github.com/silvioprog/captcha Captcha]''' – This plugin provides the handling of verification images, usually to block ''bot'' access in login pages.
+
* '''[https://github.com/silvioprog/captcha Captcha]''' – This plugin provides the handling of verification images, usually to block ''bot'' access on login pages.
* '''[https://github.com/silvioprog/mgeoip MGeoIP]''' – This plugin allows you to identify the name of country or city which IPs come from.
+
* '''[https://github.com/silvioprog/mgeoip MGeoIP]''' – This plugin allows you to identify the name of the country or city where IPs reside.
* '''[https://github.com/silvioprog/convutils ConvUtils]''' – This plugin allows you to convert one measure (centimeters, inches, liters etc.) to another.
+
* '''[https://github.com/silvioprog/convutils ConvUtils]''' – This plugin allows conversion between units of measurement (centimeters, inches, liters etc.)
 
* '''[https://github.com/silvioprog/htmldoc HtmlDoc]''' – Whith this plugin you can write headers, body and other relevant tags using Object Pascal.
 
* '''[https://github.com/silvioprog/htmldoc HtmlDoc]''' – Whith this plugin you can write headers, body and other relevant tags using Object Pascal.
 
* '''[https://github.com/silvioprog/ljgridutils LJGridUtils]''' – This plugin offers easy conversion from LCL to JSON and vice versa.
 
* '''[https://github.com/silvioprog/ljgridutils LJGridUtils]''' – This plugin offers easy conversion from LCL to JSON and vice versa.

Revision as of 12:20, 30 April 2016

About

Brook framework is the Free Pascal framework for web applications. It's pure Pascal. You don't need to leave your preferred programming language.

It's complete: simple actions or configurable actions for database access, advanced routing features, wizard for Lazarus, support for i18n, high compatibility with JSON structures, easy and elegant REST implementation, plugins for varied needs, extensible and decoupled brokers... In fact, you have several reasons to adopt Brook as your web development framework.

Features

  • Advanced routes management – Actions are performed by means of routes. Brook knows how to receive a request and choose the correct URL and the correct method to reply to it.
  • Integrated data persistance – Brook offers a table object where data can be handled. Less instantiations, less coding, with an elegant syntax.
  • JSON native supportJSON is widespread in the web for data exchange purposes. You will really appreciate Brooks' good JSON support.
  • REST architecture supportREST is an architecture able to simplify and standardize data requests and replies. Brook is powerful even if you don't use REST – but you will want to use it.
  • Lazarus wizards for installation and usage - With Lazarus, development is easier; with the Brook wizards, only a few clicks are required to start and configure your Brook projects.

Demos

If you want to see Brook in action, then take a look a database demo here and a simple chat here.

Plugins

  • dOPF – This plugin provides sleek, intuitive and fast object persistence for faster and easier database development.
  • RUtils – This plugin offers some general purpose routines for string conversion, parsing, encoding and more.
  • JTemplate – This plugin helps you to fill variables in a template file.
  • QTemplate – This plugin implements an alternative to the FPTemplate engine.
  • EasyRSS – This plugin is the easiest way for Pascal developers to provide news updating services in their applications.
  • XMailer – This plugin offers a really simple way to send e-mail using Free Pascal.
  • AlgEx – This plugin helps you to process algebraic expressions passed as strings.
  • Captcha – This plugin provides the handling of verification images, usually to block bot access on login pages.
  • MGeoIP – This plugin allows you to identify the name of the country or city where IPs reside.
  • ConvUtils – This plugin allows conversion between units of measurement (centimeters, inches, liters etc.)
  • HtmlDoc – Whith this plugin you can write headers, body and other relevant tags using Object Pascal.
  • LJGridUtils – This plugin offers easy conversion from LCL to JSON and vice versa.

Homepage

Get started, documentation, license, download and others details here.