All Projects → strax → Node Wolfram

strax / Node Wolfram

Licence: mit
Wolfram|Alpha API wrapper for node.js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Node Wolfram

Openapi Generator
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
Stars: ✭ 10,634 (+13192.5%)
Mutual labels:  api-client
Chump
The Best API Wrapper for Pushover.
Stars: ✭ 67 (-16.25%)
Mutual labels:  api-client
Openvulnapi
Documentation and Tools for Cisco's PSIRT openVuln API
Stars: ✭ 73 (-8.75%)
Mutual labels:  api-client
Somfy Open Api
REST API client for the Somfy Open API
Stars: ✭ 59 (-26.25%)
Mutual labels:  api-client
Igdb
Go client for the Internet Game Database API
Stars: ✭ 65 (-18.75%)
Mutual labels:  api-client
Bigcommerce Api Ruby
Connect Ruby applications with the Bigcommerce Platform
Stars: ✭ 69 (-13.75%)
Mutual labels:  api-client
Api Php Client
PHP client of Akeneo PIM API
Stars: ✭ 56 (-30%)
Mutual labels:  api-client
Linodego
Go client for Linode REST v4 API
Stars: ✭ 76 (-5%)
Mutual labels:  api-client
Moneybird Php Client
PHP Client for Moneybird V2
Stars: ✭ 67 (-16.25%)
Mutual labels:  api-client
Python2 Krakenex
(UNMAINTAINED) REST Exchange API for Kraken.com, Python 2
Stars: ✭ 72 (-10%)
Mutual labels:  api-client
Mvvmdemo
MVVMDemo With ReactiveCocoa
Stars: ✭ 60 (-25%)
Mutual labels:  api-client
Slacko
A neat interface for Slack
Stars: ✭ 64 (-20%)
Mutual labels:  api-client
Newsapi
A python wrapper for News API.
Stars: ✭ 71 (-11.25%)
Mutual labels:  api-client
Avenue
Wrapper around URLSession and URLSessionTask to enable seamless integration with Operation / OperationQueue.
Stars: ✭ 58 (-27.5%)
Mutual labels:  api-client
Node Bitbucket
Bitbucket API client for Browser and Node.js
Stars: ✭ 73 (-8.75%)
Mutual labels:  api-client
Groupy
A simple yet powerful API wrapper for the GroupMe messaging service.
Stars: ✭ 57 (-28.75%)
Mutual labels:  api-client
Simpleapiclient Ios
A configurable api client based on Alamofire4 and RxSwift4 for iOS
Stars: ✭ 68 (-15%)
Mutual labels:  api-client
Httpie Oauth
OAuth plugin for HTTPie
Stars: ✭ 78 (-2.5%)
Mutual labels:  api-client
Kraken Node
Official Kraken.io module for Node.js
Stars: ✭ 76 (-5%)
Mutual labels:  api-client
Russianpost
SDK для работы с API Почты России (pochta.ru)
Stars: ✭ 72 (-10%)
Mutual labels:  api-client

wolfram Build Status

Wolfram is a simple Wolfram|Alpha API wrapper for Node.js with support for both plaintext and image results.

How to use

Register for a Wolfram|Alpha application ID. The Wolfram|Alpha® API is available for free for non-commercial experimental use with a low monthly cap on queries. For more information, visit http://products.wolframalpha.com/developers/. Wolfram is a registered trademark of the Wolfram Group of Companies.

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.log("Result: %j", result)
})

Running tests

Navigate to the project folder and run npm install to install the project's dependencies.

Run the following command, substituting your-app-id with your Wolfram|Alpha application ID.

$ WOLFRAM_APPID=your-app-id npm test

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].