suave

Suave is a simple web development F# library providing a lightweight web server and a set of combinators to manipulate route flow and task composition.

Github星跟踪图

Introduction

Suave Logo

Suave is a simple web development F# library providing a lightweight web server
and a set of combinators to manipulate route flow and task composition. Suave
is inspired in the simplicity of Happstack and born out of the necessity of
embedding web server capabilities in my own applications. Suave supports
Websocket, HTTPS, multiple TCP/IP bindings, Basic Access Authentication,
Keep-Alive.

Suave also takes advantage of F# asynchronous
workflows to perform non-blocking IO. In fact, Suave is written in a completely
non-blocking fashion throughout.

Sponsored by
qvitoo – A.I. bookkeeping and Suave in production since many years.

Build Status, Platform, Status, --------, --------------, Windows, Build status, Mono/Linux, Build status, What follows is a tutorial on how to create applications. Scroll past the

tutorial to see detailed function documentation.

Tutorial: Hello World!

The simplest Suave application is a simple HTTP server that greets all visitors
with the string "Hello World!"

open Suave

startWebServer defaultConfig (Successful.OK "Hello World!")

Now that you've discovered how to do "Hello World!", go read the
rest of the documentation – editable in the docs folder.

Suave.Testing

We have a NuGet ready for your testing needs; Suave is an excellent server for
running in-process integration tests, as it's very fast to spawn. On an ordinary
laptop, running hundreds of randomized tests and micro-benchmarks as well as all
Suave unit tests, take about 5 seconds on mono.

Start by installing:

paket add nuget suave.testing

You can now use it:

open Suave
open Suave.Testing
open Expecto

testCase "parsing a large multipart form" <, fun _ ->

  let res =
    runWithConfig (OK "hi"), > req HttpMethod.POST "/" (Some byteArrayContent)

  Expect.equal res "hi" "Should get the correct result"

All of our tests use this assembly; you can do too.

How to Build

To execute the build script, invoke following command on the Linux or MacOs console:

./build.sh

Or in the Microsoft Windows MSDOS console:

build

Coding Guidelines

Suave.X where X is a module is where we expect users to look. We don't expect users
of the library to have to look at Y in Suave.X.Y, so for server-specific code, please
stick to the Y module/namespace. That way we make the API discoverable.

Style Guide

Two space indentation.

match x with // ', ' characters at base of 'match', A     -> (), Bcdef -> "aligned arrows" // space after ', ' character

Parameters

Let type annotations be specified with spaces after the argument symbol and before
the type.

module MyType =
  let ofString (scheme : string) =
    // ...

Method formatting with no spaces after/before normal parenthesis

let myMethodName firstArg (second : WithType) = async { // and monad builder
  return! f firstArg second
  } // at base of 'let' + 2 spaces

You need to document your methods with '///' to create XML-doc. A XML
documentation file is generated together with the compilation and is distributed
with the NuGet so that others can read your code's intentions easily.

Don't put unnecessary parenthesis unless it makes the code more clear.

When writing functions that take some sort of 'configuration' or that you can
imagine would like to be called with a parameter which is almost always the same
value for another function body's call-site, put that parameter before
more-often-varying parameters in the function signature.

Testing

Run Tests as a console app. Return status code = 0 means success.

Upgrade openssl

Windows: paket update openssl.redist

OS X: brew install openssl && brew update openssl && cp /usr/local/Cellar/openssl/1.0.1j_1/lib/ .

Linux: ...

Community

Chat Room

We have a chat room in case you feel like chatting a bit.

Chat Room

Integrations

主要指标

概览
名称与所有者SuaveIO/suave
主编程语言F#
编程语言F# (语言数: 8)
平台
许可证Other
所有者活动
创建于2010-07-03 15:26:06
推送于2025-03-03 14:18:11
最后一次提交2025-03-03 09:18:10
发布数117
最新版本名称v2.7.0-beta1 (发布于 2023-07-03 12:46:04)
第一版名称v0.0.3 (发布于 )
用户参与
星数1.3k
关注者数51
派生数195
提交数2.7k
已启用问题?
问题数440
打开的问题数21
拉请求数301
打开的拉请求数4
关闭的拉请求数43
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?