Wasm::Hook - Automatically load WebAssembly modules without a Perl wrapper
version 0.23
use Wasm::Hook; use Foo::Bar; # will load Foo/Bar.wasm or Foo/Bar.wat if no Foo/Bar.pm is found no Wasm::Hook; # turns off automatic wasm / wat loading
WARNING: WebAssembly and Wasmtime are a moving target and the interface for these modules is under active development. Use with caution.
This module installs an @INC
hook that automatically loads WebAssembly (Wasm) files so that they can be used like a Perl module, without:
.pm
file that loads the WebAssemblyThis module will only load a WebAssembly module if there is no Perl Module (.pm
file) with the appropriate name.
The functions inside the WebAssembly module are exportable via the Exporter module. @EXPORT_OK
is used, so you will need to explicitly export functions.
Graham Ollis <plicease@cpan.org>
This software is copyright (c) 2020-2022 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.