Deploying your Fuse API with Node
First, build your API server into a single JS file that can be run with Node:
fuse build --adapter node
This will build your server into build/node.js
. You can deploy it to your favorite Cloud and run it with node (node build/node.js
).