actix-web static files as resources support

Legal

Dual-licensed under MIT or the UNLICENSE.

Features

Usage

Use-case #1: Static resources folder

Create folder with static resources in your project (for example static):

bash cd project_dir mkdir static echo "Hello, world" > static/hello

Add to Cargo.toml dependency to actix-web-static-files:

```toml [dependencies] actix-web-static-files = "0.3.0-alpha.6"

[build-dependencies] actix-web-static-files = "0.3.0-alpha.6" ```

Add build script to Cargo.toml:

toml [package] build = "build.rs"

Add build.rs with call to bundle resources:

```rust use actixwebstaticfiles::resourcedir;

fn main() { resource_dir("./static").build().unwrap(); } ```

Include generated code in main.rs:

```rust use actixweb::{App, HttpServer}; use actixwebstaticfiles;

use std::collections::HashMap;

include!(concat!(env!("OUT_DIR"), "/generated.rs"));

[actix_rt::main]

async fn main() -> std::io::Result<()> { HttpServer::new(move || { let generated = generate(); App::new().service(actixwebstatic_files::ResourceFiles::new( "/static", generated, )) }) .bind("127.0.0.1:8080")? .start() .await } ```

Run the server:

bash cargo run

Request the resource:

```bash $ curl -v http://localhost:8080/static/hello * Trying 127.0.0.1:8080... * TCP_NODELAY set * Connected to localhost (127.0.0.1) port 8080 (#0)

GET /static/hello HTTP/1.1 Host: localhost:8080 User-Agent: curl/7.65.3

Use-case #2: package.json - npm managed folder

Create folder with static resources in your project (for example static):

```bash cd projectdir mkdir staticpackages cd static_packages echo '{}' > package.json

install your npm dependencies (here we use fontawesome as an example)

npm install --save-dev @fortawesome/fontawesome-free ```

Add generated folder to ignore file of your version control system (here: git):

bash cd project_dir echo "static_packages/node_modules" >> .gitignore

Add dependencies and build-dependencies in Cargo.toml same way as in the first use-case.

Add build.rs with call to bundle resources:

```rust use actixwebstaticfiles::npmresource_dir;

fn main() { npmresourcedir("./static_packages").unwrap().build().unwrap(); } ```

Include generated code in main.rs same way as in the first use-case.

Reference resources in your HTML:

html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="/static/@fortawesome/fontawesome-free/css/all.css"> <script defer src="/static/@fortawesome/fontawesome-free/js/all.js"></script> <title>Hi</title> </head> <body> <i class="fas fa-thumbs-up"></i> </body> </html>