Skip to content

jrob00/wolfram

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Wolfram - a Wolfram|Alpha API wrapper for Node.js

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.

How to use

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)
})

Running tests

$ WOLFRAM_APPID=your-app-id npm test

License

MIT

About

Wolfram|Alpha API wrapper for node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published