Crates.io | docx-rs |
lib.rs | docx-rs |
version | 0.4.17 |
source | src |
created_at | 2020-01-24 10:34:53.821449 |
updated_at | 2024-04-26 09:31:28.818317 |
description | A .docx file writer with Rust/WebAssembly. |
homepage | |
repository | https://github.com/bokuweb/docx-rs |
max_upload_size | |
id | 201492 |
size | 2,514,459 |
A .docx file `writer` with Rust/WebAssembly.
[dependencies]
docx-rs = "0.4"
$ yarn add docx-wasm
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()
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")))
.build()
.pack(file)?;
Ok(())
}
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");
});
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);
You can run example with following code.
Please see examples
directory.
$ cargo run --example [EXAMPLE_NAME]
For Example if you want to run hello
example.
Please run following command.
$ cargo run --example hello
So you can see output file in output directory.
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
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