Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback

Binaryify

If (for bundling purposes) you want to use an import statement for data that isnโ€™t necessarily JavaScript, then this is the tool for you.

deno install -Af https://deno.land/x/binaryify@0.0.6/binaryify.js
# might need
export PATH="$HOME/.deno/bin:$PATH"

# usage
binaryify YOUR_FILE.wasm

# outputs:
#    // paths have been generated!
#    // add this wherever you need it now:
#    import { stringToBytes } from "https://deno.land/x/binaryify@0.0.6/tools.js"
#
#    import binaryStringForYourFile from "./YOUR_FILE.wasm.binaryified.js"
#    const uint8ArrayForYourFile = stringToBytes(binaryStringForYourFile)

Example Run