A small client library to access FME Server (http://www.safe.com/fme/fme-server/). Note this is not for the FME Cloud API.
Installing
npm install fme-server-api
Using For a working example, see example.js
var token = 'mytoken';
var client = require('fme-cloud-api')(token);
client.instances().then(console.log);
Todo
* Implement missing functions.