Concatenative topics
Concatenative meta
Other languages
Meta
The Factor web framework is called Furnace. It is found in the furnace
vocabulary.
01:57 < dnm> furnace? 01:57 < doublec> factor web framework 01:57 < doublec> it's the hottest thing in web development...
Furnace is fully documented; see Furnace framework.
Some blog posts about Furnace:
Related wiki articles:
Some simple Furnace examples to look at are the following vocabularies in extra
:
webapps.counter
webapps.calculator
webapps.ip
Some of the applications in webapps
, such as webapps.wiki
, do not provide their own CSS stylesheet or database configuration. As such, they need the common configuration from websites.concatenative
to function.
In a fresh Factor image, USE: furnace
will take a long time because many vocabularies have to be loaded and compiled. To speed up this process, you can save an image with save-image
, for example:
USE: furnace "web.image" save-image
As stated above, html
, http
, syndication
, xml
, db
, urls
and validators
vocabularies will also be compiled since furnace depends on them. You can only load the web.image by using the "-i" command-line switch from a shell, for example:
./factor -i=web.image
Note that an image cannot be "loaded" from the Factor GUI, as the GUI is actually run from the default factor.image.
Furnace was primarily inspired by three Java web frameworks:
This revision created on Sat, 15 Jun 2013 22:43:21 by NewDave (removal of spam)