0.1.20 • Published 3 years ago

nodejs-stock-info v0.1.20

Weekly downloads
75
License
MIT
Repository
github
Last release
3 years ago

Build Status Known Vulnerabilities codecov license: MIT Maintainability npm version

Disclaimer: This package fetch the result from finance.yahoo.com using web scrapping. Owner will not be responsible for any misuse of this package. This is solely for the purpose of learning.

Getting started

Installation

This package can be installed using npm

npm install nodejs-stock-info

or, yarn

yarn add nodejs-stock-info

Usage

Import stock-info.

const SI = require('nodejs-stock-info')

Then instantiate with either the empty constructor

let stockInfo = new SI()

Or, with a string or list of strings corresponding to the stock e.g. "amzn" or ["amzn", "aapl"]

let stockInfo = new SI("amzn")
// or
let stockInfo = new SI(["amzn", "aapl"])

The getStockInfo method will return the latest stock information and can be used as a promise.

stockInfo.getStockInfo().then((response) => {
    console.log(response) //or do something else
})

Chaining is also supported.

stockInfo.setStocks("tsla").getStockInfo().then((response) => {
    console.log(response) //or do something else
})

Issues

If any issues are found, they can be reported here.

License

This project is licensed under the MIT license.

0.1.20

3 years ago

0.1.17

3 years ago

0.1.19

3 years ago

0.1.12

3 years ago

0.1.9

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago