Wolfram is a simple Wolfram|Alpha API wrapper for Node.js. Currently it supports only answers with primary results with plaintext answers but pod image support will be added in the future.
Register for an application ID in the Wolfram|Alpha developer website.
Install the module with npm:
$ npm install wolfram
Example usage:
var wolfram = require('wolfram').createClient("[CENSORED]")
wolfram.query("integrate 2x", function(err, result) {
if(err) throw err
console.error("result", result)
})$ WOLFRAM_APPID=your-app-id npm test
MIT