Bix 1.0.0-beta-001
See the version list below for details.
dotnet add package Bix --version 1.0.0-beta-001
NuGet\Install-Package Bix -Version 1.0.0-beta-001
<PackageReference Include="Bix" Version="1.0.0-beta-001" />
paket add Bix --version 1.0.0-beta-001
#r "nuget: Bix, 1.0.0-beta-001"
// Install Bix as a Cake Addin #addin nuget:?package=Bix&version=1.0.0-beta-001&prerelease // Install Bix as a Cake Tool #tool nuget:?package=Bix&version=1.0.0-beta-001&prerelease
Bix
Bix which can be found in src/Bix
is an F# microframework built on top of Bun.serve
although the name is just a codename for now (until I decide it's good to go), this microframework is heavily inspired by Giraffe, and Saturn frameworks from F# land so if you have ever used that server model then Bix will feel fairly similar, I plan to add a saturn like router eventually
Bix.Bun
Bix.Bun exposes a bun.sh specific request handler, and other http handlers that may contain Bun specific APIs like Bun.file
to read files
Check the sample at src/Bix.Bun.Sample/Program.fs
Bix.Deno
Bix.Deno exposes a deno specific request handler, and other http handlers that may contain Bun specific APIs like Deno.open
to read files
Check the sample at src/Bix.Deno.Sample/Program.fs
// For more information see https://aka.ms/fsharp-console-apps
open Bix
open Bix.Types
open Bix.Handlers
open Bix.Router
open Bix.Deno
let checkCredentials: HttpHandler =
fun next ctx ->
let req: Request = ctx.Request
let bearer = req.headers.get "Authorization" |> Option.ofObj
// dummy handler
match bearer with
| None -> (setStatusCode (401) >=> sendText "Not Authorized") next ctx
| Some token -> next ctx
let routes =
Router.Empty
|> Router.get ("/", fun next ctx -> sendText "Hello, World!" next ctx)
|> Router.get ("/posts/:slug", fun next ctx ->
promise { // promise based handlers are supported
let slug = ctx.PathParams "slug"
let! post = Database.find slug // database from somewhere
let! html = Views.renderPost post // views from somewhere
return! sendHtml html next ctx
}
)
|> Router.get ("/json", fun next ctx ->
let content = {| name = "Bix Server!"; Date = System.DateTime.Now |}
sendJson content next ctx
)
|> Router.get ("/protected", (checkCredentials >=> (fun next ctx -> sendText "I'm protected!" next ctx)))
Server.Empty
|> Server.withRouter routes
|> Server.withDevelopment true
|> Server.withPort 5000
|> Server.run
|> Promise.start
Note: When Working with deno, you need to have the following fields in your import map
{ "imports": { "urlpattern-polyfill": "https://cdn.skypack.dev/pin/urlpattern-polyfill@v5.0.3-5dMKTgPBkStj8a3hiMD2/mode=imports,min/optimized/urlpattern-polyfill.js", "http": "https://deno.land/std@0.147.0/http/server.ts" } }
This is to ensure bare imports within Bix.Browser.Types
and Bix.Deno
work just fine.
Development
This project is developed with VSCode in Linux/Windows/WSL but either rider, and visual studio should work just fine.
Requirements
- .NET6 and above - https://get.dot.net
- Bun - bun.sh - (in case of running bun)
- Deno - deno - (in case of running deno)
Try the sample
if you have bun installed along deno the simplest way to run the samples is
bun start
bun start:deno
both commands will restore the projects and run fable, bun/deno in watch mode
Bun
After installing .NET + Bun just run
bun start
on your terminal and it should just work
Deno
After installing .NET + Bun just run
dotnet tool restore && \
dotnet fable watch src/Bix.Deno.Sample -s -o dist/Bix.Deno.Sample --run deno run -A ./dist/Bix.Deno.Sample/Program.js`
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Fable.Browser.Blob (>= 1.2.0)
- Fable.Browser.Event (>= 1.5.0)
- Fable.Browser.Url (>= 1.1.0)
- Fable.Browser.WebSocket (>= 1.2.0)
- Fable.Core (>= 3.7.1)
- Fable.Fetch (>= 2.6.0)
- Fable.URLPattern (>= 1.0.0)
- FSharp.Core (>= 6.0.5)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Bix:
Package | Downloads |
---|---|
Bix.Bun
Package Description |
|
Bix.Deno
Package Description |
|
Bix.Cloudflare
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0-beta-006 | 85 | 5/22/2024 |
1.0.0-beta-004 | 118 | 7/10/2023 |
1.0.0-beta-003 | 127 | 7/22/2022 |
1.0.0-beta-002 | 129 | 7/18/2022 |
1.0.0-beta-001 | 149 | 7/17/2022 |