Le 21/02/2017 à 18:18, Arne Babenhauserheide a écrit :
Michael Vehrs writes:
On 02/20/2017 09:41 PM, Arne Babenhauserheide wrote:
Michael Vehrs <michael.bursc...@gmx.de> writes:
As a late-comer to this discussion, here are my two ce
In practice it does not provide a web interface for uploading packages.
If you want to do something truly exciting, you could take wingos fibers
and build a high performance web interface for guildhall with them.
High performance is not really important in this case. We are not
talking about gazillions of npm packages.
That’s true. That’s why I wrote exciting :)
You could also use the existing (web server) tools to build such a site.
We can make it exciting and use fibers web server nonetheless.
The interface of the *fibers* web server is the same as guile web
server interface.
Here is it [0]:
```
(use-modules (fibers web server))
(define (handler request body)
(values '((content-type . (text/plain)))
"Hello, World!"))
(run-server handler)
```
Basically you just need to change the use-modules line in your current
project.
[0]