A client library for API Axle api
npm install node-axle
NodeAxle is designed to support future versions of ApiAxle. The library is instantiated based on the desired version (V1 at the moment):
NodeAxle = require( "node-axle" ).V1
Get all API's managed by ApiAxle
axle = new NodeAxle("localhost", 3001)
axle.getApis {}, ( err, results ) ->
for i of results.results
api = results.results[i]
console.log api["name"]