51 releases (23 stable)

2.0.1 Apr 28, 2024
1.0.21 Apr 24, 2024
1.0.16 Mar 27, 2024
1.0.10 Nov 10, 2023
0.26.0 Nov 11, 2022

#197 in Template engine

Download history 61/week @ 2024-01-27 51/week @ 2024-02-03 117/week @ 2024-02-10 145/week @ 2024-02-17 227/week @ 2024-02-24 135/week @ 2024-03-02 157/week @ 2024-03-09 582/week @ 2024-03-16 323/week @ 2024-03-23 306/week @ 2024-03-30 646/week @ 2024-04-06 244/week @ 2024-04-13 396/week @ 2024-04-20 728/week @ 2024-04-27 265/week @ 2024-05-04 133/week @ 2024-05-11

1,542 downloads per month
Used in 2 crates

Apache-2.0

670KB
13K SLoC

MiniJinja-Autoreload

Build Status License Crates.io rustc 1.61.0 Documentation

MiniJinja-Autoreload is a utility crate for MiniJinja that adds an abstraction layer that provides auto reloading functionality of environments.

This simplifies fast development cycles without writing custom code.

use minijinja_autoreload::AutoReloader;
use minijinja::{Source, Environment};

let reloader = AutoReloader::new(|notifier| {
    let mut env = Environment::new();
    let template_path = "path/to/templates";
    notifier.watch_path(template_path, true);
    env.set_source(Source::from_path(template_path));
    Ok(env)
});

let env = reloader.acquire_env()?;
let tmpl = env.get_template("index.html")?;

For an example have a look at the autoreload example.

Sponsor

If you like the project and find it useful you can become a sponsor.

Dependencies

~0.1–8MB
~53K SLoC