8 releases (5 breaking)

0.6.0 Jul 5, 2024
0.5.2 Apr 23, 2024
0.5.1 Feb 28, 2024
0.4.0 Feb 19, 2024
0.1.0 Aug 28, 2023

#1168 in Game dev

Download history 14/week @ 2024-07-13 15/week @ 2024-07-20 72/week @ 2024-07-27 11/week @ 2024-08-03 38/week @ 2024-08-10 7/week @ 2024-08-17 6/week @ 2024-08-31 7/week @ 2024-09-07 10/week @ 2024-09-14 38/week @ 2024-09-21 35/week @ 2024-09-28 14/week @ 2024-10-05 27/week @ 2024-10-12 4/week @ 2024-10-19 11/week @ 2024-10-26

60 downloads per month

MIT/Apache

33KB
390 lines

bevy_http_client

Crates.io Downloads Documentation MIT/Apache 2.0

A simple HTTP client Bevy Plugin for both native and WASM.

Example

use bevy::{prelude::*, time::common_conditions::on_timer};
use bevy_http_client::prelude::*;
use serde::Deserialize;

#[derive(Debug, Clone, Deserialize, Default)]
pub struct IpInfo {
    pub ip: String,
}

fn main() {
    let mut app = App::new();
    app.add_plugins((MinimalPlugins, HttpClientPlugin))
        .add_systems(Update, handle_response)
        .add_systems(
            Update,
            send_request.run_if(on_timer(std::time::Duration::from_secs(1))),
        );
    app.register_request_type::<IpInfo>();
    app.run();
}

fn send_request(mut ev_request: EventWriter<TypedRequest<IpInfo>>) {
    ev_request.send(
        HttpClient::new()
            .get("https://api.ipify.org?format=json")
            .with_type::<IpInfo>(),
    );
}

fn handle_response(mut ev_response: EventReader<TypedResponse<IpInfo>>) {
    for response in ev_response.read() {
        println!("ip: {}", response.ip);
    }
}

Supported Versions

bevy bevy_http_client
0.14 0.6
0.13 0.4, 0,5
0.12 0.3
0.11 0.1

License

Dual-licensed under either:

at your option. This means that when using this crate in your game, you may choose which license to use.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~38–74MB
~1.5M SLoC