@paul-shuvo/nodejs-stock-info

0.1.18 • Public • Published

NodeJS Stock Info

Build Status Known Vulnerabilities codecov license: MIT Maintainability npm version

A minimal NodeJS library to fetch stock info.

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 stock-info

or, yarn

yarn add stock-info

Usage

Import stock-info.

const SI = require('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.

Package Sidebar

Install

npm i @paul-shuvo/nodejs-stock-info

Weekly Downloads

9

Version

0.1.18

License

MIT

Unpacked Size

18.4 kB

Total Files

9

Last publish

Collaborators

  • paul-shuvo