https://github.com/thinkbeforecoding/eskv
In-memory key/value and event store, for educational purposes - Moved to Codeberg
https://github.com/thinkbeforecoding/eskv
event-sourcing keyvaluestore
Last synced: 3 months ago
JSON representation
In-memory key/value and event store, for educational purposes - Moved to Codeberg
- Host: GitHub
- URL: https://github.com/thinkbeforecoding/eskv
- Owner: thinkbeforecoding
- License: other
- Archived: true
- Created: 2021-09-29T17:23:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-05T17:26:07.000Z (3 months ago)
- Last Synced: 2025-04-05T18:26:26.254Z (3 months ago)
- Topics: event-sourcing, keyvaluestore
- Language: F#
- Homepage: https://codeberg.org/thinkbeforecoding/eskv
- Size: 368 KB
- Stars: 16
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# _eskv_
This code has moved to Codeberg: https://codeberg.org/thinkbeforecoding/eskv
[](https://github.com/thinkbeforecoding/eskv/actions/workflows/dotnet.yml)
_eskv_ is an in-memory key/value and event store, for educational purpose.
## Disclamer
**_eskv_ is not meant to be run in production**. _eskv_ has been created to ease the _learning_ of event sourcing. Use a production-ready event store for production.## Getting Started
Install _eskv_ as a global dotnet tool:
``` bash
dotnet tool install eskv -g
```
for prerelease version, specify the `--prerelease` flag.You can also install it as a local dotnet tool:
``` bash
dotnet new tool-manifest
dotnet tool install eskv
```Then run it:
``` bash
eskv
```
or for a local dotnet tool:
``` bash
dotnet eskv
```and open [http://localhost:5000](http://localhost:5000) in a browser to access the web ui.
## Usage
```
USAGE: eskv.exe [--help] [--endpoint ] [--dev] [--parcel ]OPTIONS:
--endpoint eskv http listener endpoint. default is http://localhost:5000
--dev specify dev mode.
--parcel parcel dev server url. default is http://localhost:1234
--help display this list of options.
```--endpoint < string >
: the eskv http listener endpoint. Use http://*:5000 to authorize connections over the network, or use it t change port. Default is http://localhost:5000--dev
: activate development mode. Used only when working on _eskv_ UI development.--parcel < string >
: The parcel dev server url used in development mode.--help
: display help.## eskv.client nuget
_eskv.client_ nuget contains _eskv_ client library to interact with _eskv_ server.
Add it to your project using the IDE, or the following command:
``` bash
dotnet add package eskv.client
```In an F# script, you can reference it with a #r directive:
``` fsharp
#r "nuget: eskv.client"
```Read the full [_eskv.client_ documentation](https://github.com/thinkbeforecoding/eskv/blob/main/docs/eskv.client.md).
## Copyright and License
Code copyright Jérémie Chassaing. _eskv_ and _eskv.client_ are released under the [Academic Public License](https://github.com/thinkbeforecoding/eskv/blob/main/LICENSE.md).