Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/christopherdavenport/resource-monad-ts


https://github.com/christopherdavenport/resource-monad-ts

Last synced: 23 days ago
JSON representation

Awesome Lists containing this project

README

        

# Resource-Monad

Resource Monad is a simple implementation of a monadic style to resource handling.

```ts
import resource from "resource-monad"

const log: (s: string) => resource.Resource = (s: string) => {
return resource.make(
async () => {console.log("Starting " + s)},
async () => { console.log("Shutdown " + s)}
)
}

const display = log("1")
.flatMap((_) => log("2"))
.use(async (a: void) => { console.log("Using")})

display()
// Starting 1
// Starting 2
// Using
// Shutdown 2
// Shutdown 1
```

As you can see from the above. First resource are used, then using acts as an anchor point, and finally resources are cleaned up in the reverse order that they are required.