2 个版本
0.1.1 | 2022 年 9 月 5 日 |
---|---|
0.1.0 | 2022 年 9 月 5 日 |
#5 in #ecmascript
10KB
171 行
caber
将二进制数据嵌入 JavaScript 和 TypeScript 项目。
安装
cargo install caber --features cli
操作指南
> caber --help
caber 0.1.1
Gerald Nash (aunyks)
Embed binary data into JavaScript and TypeScript projects.
USAGE:
caber [OPTIONS] <INPUT_FILE>
ARGS:
<INPUT_FILE> The binary to be embedded
OPTIONS:
-h, --help Print help information
-l, --output-lang <OUTPUT_LANG> The output language of the binary (javascript / ecmascript,
typescript, etc)
-m, --export-mode <EXPORT_MODE> The export mode of the typed array (default, object, or none)
-o, --output-file <OUTPUT_FILE> The output file containing the embedded file
-V, --version Print version information
示例
嵌入 file.bin
文件并使用 export default ...
导出类型化数组。结果将写入 stdout。
> caber ./file.bin
const binary = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
export { binary };
将 file.bin
文件嵌入到 file.ts
TypeScript 文件中,并使用 export default ...
导出类型化数组。
> caber ./file.bin --output-lang typescript --export-mode default --output-file file.ts
将 file.bin
文件作为 JavaScript 嵌入并使用 export { ... }
导出类型化数组。结果将写入 stdout。
> caber ./file.bin --output-lang javascript --export-mode object
const binary = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
export { binary };
将 file.bin
文件作为 JavaScript 嵌入并使用 export default ...
导出类型化数组。结果将写入 stdout。
> caber ./file.bin --output-lang javascript --export-mode default
const binary = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
export default binary;
许可协议
公平源代码许可协议,版本 0.9
版权所有 © 2022 Gerald Nash
依赖项
~0.3–1MB
~23K SLoC