Configuration framework for compiling and coordinating polyglossic middleware in Express using WebAssembly.
Refractile: "...capable of refraction"
With Refractile, Node developers gain the ability to refract server-side functionality through the many prisms of other languages. Refractile facilitates the incorporation of WebAssembly modules with diverse sources into the Node runtime environment, specifically targeting the middleware design patterns of Express.
With Refractile you can experience a best-of-all-worlds development scenario, combining the developer velocity of Node with the power of whatever else you might find. For instance, you could write functionality that benefits from both the speed of C++ and the affordances of a package from Go within a single API spun up via simple-to-use Express.js.
Make sure you have Node.js installed before you begin.
You can install refractile into your project using the npm.
$ npm install refractile
The two core concepts to understand when working with this package are its configuration system and the function refract
itself.
The interface for refract
is simple: it takes two arguments — a reference to a module and a function on that module to be invoked. As an exmaple, this would look as follows:
refract('some_module', 'some_function');
Simple!
refract
returns an express middleware function (e.g. a function that expects a Request object, a Response object, and a Next function). These are the arguments that will be fed into the function requested on the module, which, in the example above, would be some_funciton
.
refract
works with WebAssembly under the hood; currently, it requires JavaScript glue code to run. In the example above some_module
would be associated with a file called some_module.js
that is responsible for instantiating some_module.wasm
. With this in mind, one can understand Refractile's goal as organizing the compilation of .wasm
files and, in some cases, .js
glue code as express middleware.
The function refract
works with a configuration file called refractile.config.js
. For refract
to work, you must also create and configure refractile.config.js
.
The configuration should look as follows:
module.exports = {
preload_cmds: [ ] // This is an array of strings representing commands that will run when the configuration is loaded. Use it to create or copy any resources that your modules will depend on
modules: { // This object contains the unique configurations for each module you want to include
some_module: { // The name of the module is organized by this key
bin: "./some_folder", // (Required) The folder where refractile will look for the JS module
make: " ", // (Required) The command to be evaluated for building sources into WASM modules
src: " ", // The path to the source code. Refract will use this reference to determine if the module needs to be rebuilt after the code updates.
gluecode_src: " " // If your compiler does not generate WebAssembly gluecode, you can write your own. When you point to it with this option, it will be copied into the bin folder with a name matching the module key (e.g. some_module) and a .js extension after the .wasm file was compiled.
},
// Other modules should be configured similarly
some_other_module: { ... }
}
};
You can find a project making use of refractile
here.
The example app showcases two ways of working with this package — one where a given WebAssembly compiler generates gluecode and one where custom gluecode is written by the developer and pointed to in the configuration file.
The app itself benchmarks the performance of a recursive algorithm that calculates the nth value of the fibonacci series in Go and C++ against the equivalent implementation in JavaScript
To run the project, you must have the following dependencies installed:
After installing the above dependencies, install node packages by running npm i
Then run the command npm start
to build the front-end, compile the WebAssembly modules, and start the server.