7 releases (breaking)

0.6.0 Feb 21, 2024
0.5.0 Feb 17, 2024
0.4.0 Jan 3, 2024
0.3.0 Sep 23, 2023
0.1.0 Jul 8, 2023

#62 in #connect

Download history 8/week @ 2024-01-03 239/week @ 2024-02-14 156/week @ 2024-02-21 20/week @ 2024-02-28 9/week @ 2024-03-06 6/week @ 2024-03-13 14/week @ 2024-03-27 29/week @ 2024-04-03

58 downloads per month

MIT license

11KB
135 lines

Norgopolis Client

For information about Norgopolis, consult https://github.com/nvim-neorg/norgopolis.

This crate provides functionality to easily connect to a norgopolis instance and interact with its modules.

This Rust crate provides a simple and lightweight layer for communicating with norgopolis. To establish a connection, use the connect function. By default Norgopolis runs on port 62020:

use norgopolis_client;

#[tokio::main]
async fn main() {
    let connection = norgopolis_client::connect(&"localhost".into(), &"62020".into())
        .await
        .expect("Unable to connect to server!");

    // Invokes a specific module's function without any parameters.
    // The closure will be executed for every return value provided. Return values are streamed back
    // over time, hence the `await`.
    connection.invoke("module-name", "function-name", None, |response: YourExpectedResponse| println!("{:#?}", response))
        .await
        .unwrap();
}

If the autostart-server feature flag is enabled, this client will look for a binary called norgopolis-server on the host system and will auto-execute it if a connection could not be initially established.

The server will be forked into a separate system process and will automatically shut down after 5 minutes of inactivity.

Dependencies

~5.5–8MB
~138K SLoC