Skip to content

Commit

Permalink
chore: README update library name to golem-ts and functions for async…
Browse files Browse the repository at this point in the history
… to sync
  • Loading branch information
nicoburniske committed Jun 14, 2024
1 parent f3dde33 commit 6d56b21
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# golem
`golem` is a TypeScript library that provides high-level wrappers for Golem's runtime API, including the [transaction API](https://learn.golem.cloud/docs/transaction-api). It simplifies the process of writing Golem programs by offering a set of utilities and abstractions.
# golem-ts
`golem-ts` is a TypeScript library that provides high-level wrappers for Golem's runtime API, including the [transaction API](https://learn.golem.cloud/docs/transaction-api). It simplifies the process of writing Golem programs by offering a set of utilities and abstractions.

## Installation

To install `golem`, use the following command:
To install `golem-ts`, use the following command:

```bash
npm install @golemcloud/golem-ts
Expand All @@ -18,4 +18,5 @@ npm install @golemcloud/golem-ts
- Idempotence Level: Specify the idempotence level of operations to ensure data consistency.
- Persistence Level: Control the persistence level of operations to balance performance and durability.
- Atomic Operations: Perform multiple operations atomically to maintain data integrity.
- **Result Type**: `golem-ts` introduces a `Result` type that enables typed errors, making error handling more robust and expressive.
- **Result Type**: `golem-ts` introduces a `Result` type that enables typed errors, making error handling more robust and expressive.
- **Async to Sync**: utility functions for converting a async function into a synchronous function

0 comments on commit 6d56b21

Please sign in to comment.