https://github.com/violetbuse/lite_fs
Gleam client for the litefs event stream
https://github.com/violetbuse/lite_fs
event-stream flyio gleam litefs
Last synced: 3 months ago
JSON representation
Gleam client for the litefs event stream
- Host: GitHub
- URL: https://github.com/violetbuse/lite_fs
- Owner: VioletBuse
- Created: 2024-06-18T21:46:31.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T16:53:32.000Z (almost 2 years ago)
- Last Synced: 2025-03-22T13:15:37.936Z (about 1 year ago)
- Topics: event-stream, flyio, gleam, litefs
- Language: Gleam
- Homepage: https://hexdocs.pm/lite_fs
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lite_fs
[](https://hex.pm/packages/lite_fs)
[](https://hexdocs.pm/lite_fs/)
```sh
gleam add lite_fs
```
```gleam
import lite_fs
import gleam/io
pub fn main() {
// localhost:20202/events
// print events to console when you get them
lite_fs.start(port: 20202, with: io.debug)
}
```
Further documentation can be found at .
## Development
```sh
gleam run # Run the project
gleam test # Run the tests
gleam shell # Run an Erlang shell
```