node-wolfram
node-wolfram copied to clipboard
Wolfram|Alpha API wrapper for node.js
I want to use javascript draw a function graph, but I do not know how to calculate the domain and the range of tan (abs (x)) ? [wolfram](http://www.wolframalpha.com/input/?i=tan(abs(x)))
Hey there. I added a link in your README to a tool I built where you can test out the API calls in your browser before using your SDK to...
I made a simple change so options can be sent. wolfram.query({search: "words containing msdoep", options: "&podstate=WordsMadeWithOnlyLetters__Show+all" + "&podstate=WordsMadeWithOnlyLetters__Disallow+repetition" + "&includepodid=WordsMadeWithOnlyLetters"}, function(err, result) { if(err) throw err console.log("Size: %d", result.length); console.log("Result:...
The pull request adds a news argument to query, so you can specify options instead of the default `primary=true`. Options are formatted as an object, like this : `{option: value,...