Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/mmhelloworld/hello-play-frege

A simple Play application with Frege
https://github.com/mmhelloworld/hello-play-frege

Last synced: about 1 month ago
JSON representation

A simple Play application with Frege

Lists

README

        

#A simple Play application with Frege#
This is a simple play application written in Frege to demonstrate how we can use Frege with Play.

Since Play supports Java, it is actually very easy to use the Java API from Frege
even though we don't have native Play support for Frege yet.
The application is basically JSON-in and JSON-out.
A Frege program reads a parameter from a JSON POST request and responds with a JSON response that greets the user.

##How to run##
1. Run `activator run` to compile and start the server.
1. Then send a JSON post request.
For example, with `curl`:

```
$ curl --header "Content-type: application/json" --request POST --data '{"name": "Play Frege"}' http://localhost:9000/greet

{"message" : "Hello, Play Frege"}

```