![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
##About
###Description A nodejs module for interacting with the Quandl API.
###Author Norman Joyner - norman.joyner@gmail.com
##Getting Started
###Installation
npm install quandl
###Configuration Simply require the quandl module, instantiate a new Quandl object, configure it if necessary, and start making calls. The auth token and api version are configurable.
New Quandl objects can be instantiated with configuration parameters. Here is an example:
var Quandl = require("quandl");
var quandl = new Quandl({
auth_token: "dsahFHUiewjjd",
api_version: 1,
proxy: "http://myproxy:3128"
});
Quandl objects can also be configured via the .configure(options)
method. Here is an exmaple:
var Quandl = require("quandl");
var quandl = new Quandl();
var options = {
auth_token: "dsahFHUiewjjd"
}
quandl.configure(options);
The auth_token parameter defaults to undefined (anonymous access). Be aware of the Quandl Usage Rules. The api_version parameter defaults to 1, for v1 api access. The proxy parameter routes all requests through the specfied proxy.
###Supported API versions
###Supported API Methods
###Examples Fetch Mt. Gox Bitcoin dataset, and print response:
quandl.dataset({ source: "BITCOIN", table: "MTGOXUSD" }, function(err, response){
if(err)
throw err;
console.log(response);
});
Fetch dataset metadata, and print response:
quandl.metadata("ZILLOW", "ZIP_ALLHOMES_15235", function(err, response){
if(err)
throw err;
console.log(response);
});
Search for datasets pertaining to "crude oil", and print xml response:
quandl.search("crude oil", { format: "xml" }, function(err, response){
console.log(err);
console.log(response);
});
###Running Tests
npm test
FAQs
A nodejs module for interacting with the Quandl API.
The npm package quandl receives a total of 2 weekly downloads. As such, quandl popularity was classified as not popular.
We found that quandl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.