Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/euhmeuh/web-galaxy
A minimalist web framework for the Racket web-server
https://github.com/euhmeuh/web-galaxy
racket racket-library web-galaxy
Last synced: about 2 months ago
JSON representation
A minimalist web framework for the Racket web-server
- Host: GitHub
- URL: https://github.com/euhmeuh/web-galaxy
- Owner: euhmeuh
- License: lgpl-3.0
- Created: 2018-04-05T20:56:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-10T07:20:34.000Z (almost 2 years ago)
- Last Synced: 2024-11-15T10:42:44.822Z (about 2 months ago)
- Topics: racket, racket-library, web-galaxy
- Language: Racket
- Homepage:
- Size: 30.3 KB
- Stars: 27
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-racket - web-galaxy - A minimalist web framework for the Racket web-server. (Web Frameworks)
README
# web-galaxy
A minimalist web framework for the Racket web-server## Installation
The library is in a **very early stage of development**, but is already used in most of my web projects and available in the Racket package repository:
```
raco pkg install web-galaxy
```## Example
You can find a very simple blog written with `web-galaxy` in the [test folder](https://github.com/euhmeuh/web-galaxy/tree/master/web-galaxy-test/tests/web-galaxy/pony-blog).
## Features
`web-galaxy` is heavily based on the standard Racket `web-server` library.
It provides simple tools for building a web site that `web-server` does not provide but are pretty much always required in web projects:
- a **translation** system based on the Scheme standard SRFI 29
- a **date** system based on the Scheme standard SRFI 19
- a simple HTML page generator based on s-expressions
- a component system for HTML elements (called **entities**)
- a preconfigured **logging** system
- a preconfigured server so that you don't have to know every inner-workings of the Racket `web-server`, configurable step by step using parametersThe aim of this library is to stay as simple and light as possible by using Scheme standards and basic Racket libraries, but still provide an easy "all-in-one" package to start developing web sites in Racket.