Socket
Socket
Sign inDemoInstall

intrinio-client

Package Overview
Dependencies
7
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    intrinio-client

NodeJS client for the Intrinio API


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

intrinio-client

  • SDK for interacting with the intrinio REST API
var username = "" //Your Intrinio App Username
var password = "" //Your Intrinio App Password
var intrinio = require("intrinio-client")(username, password)

intrinio
.ticker('AAPL')
.on('complete', function(data, response) {
	if(response.statusCode==404){
		console.log("Not found ticker")
	}else if(response.statusCode==200){
		console.log("Everything is OK with .ticker!")
	}
	console.log(data)
});

Installation

$ npm install intrinio-client

Features

  • Fast, easy configuration

Docs & Community

  • Website and Documentation - [website repo]

Goals

  • 100% Intrinio End Point Coverage

Quick Start

Create the app:

$ mkdir newApp
$ cd newApp
$ npm init 

Install dependencies:

$ npm install --save intrinio-client

Examples

To view the examples, clone the

$ git clone git://github.com/jspenc72/intrinio-client.git --depth 1
$ cd intrinio-client
$ npm install

Then run whichever example you want:

$ node examples/example.js

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

People

The original author of The original author of Intrinio-Client is @Jspenc72

License

MIT

Keywords

FAQs

Last updated on 15 Jan 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc