A .docx file `writer` with Rust/WebAssembly.


GitHub Actions Status docx-rs at crates.io

Installation

Rust

[dependencies] docx-rs = "0.2"

Browser/Node.js

$ yarn add docx-wasm

Example

Rust

```rust use docx_rs::*;

pub fn hello() -> Result<(), DocxError> { let path = std::path::Path::new("./hello.docx"); let file = std::fs::File::create(&path).unwrap(); Docx::new() .addparagraph(Paragraph::new().addrun(Run::new().add_text("Hello"))) .build() .pack(file)?; Ok(()) } ```

Browser

```javascript import { saveAs } from "file-saver";

// // Note that a dynamic import statement here is required due to webpack/webpack#6615, import("docx-wasm").then((w) => { const { buffer } = new w.Docx() .addParagraph( new w.Paragraph().addRun(new w.Run().addText("Hello world!!")) ) .build(); saveAs(new Blob([buffer]), "hello.docx"); }); ```

Node.js

```javascript const w = require("docx-wasm"); const { writeFileSync } = require("fs");

const { buffer } = new w.Docx() .addParagraph(new w.Paragraph().addRun(new w.Run().addText("Hello world!!"))) .build();

writeFileSync("hello.docx", buffer); ```

More examples

Development

Requirements

Examples

You can run example with following code. Please see examples directory.

sh $ cargo run --example [EXAMPLE_NAME]

For Example if you want to run hello example. Please run following command.

sh $ cargo run --example hello

So you can see output file in output directory.

Testing

Rust

Please run following command.

make lint && make test

If snapshot testing is failed, fix code or update snapshot files. (See https://insta.rs/).

$ cargo-insta review

Then re run test.

$ make test

Wasm

Please run following command.

$ cd docx-wasm && yarn install && yarn test

If snapshot testing is failed, fix code or update snapshot files. (See https://jestjs.io/docs/snapshot-testing).

$ yarn test -- --updateSnapshot

Features