npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@chriscates/yahoofinance

v1.0.4

Published

![License](https://img.shields.io/badge/license-MIT-blue.svg) ![NPM](https://img.shields.io/badge/version-1.0.4-blue.svg) [![Build Status](https://travis-ci.org/ChrisCates/YahooFinance.svg?branch=master)](https://travis-ci.org/ChrisCates/YahooFinance) [![

Downloads

19

Readme

Yahoo Finance

License NPM Build Status codecov

A flexible API and Library to aggregate data on Stonks. Use it as a command line tool or an importable library. Compatible with both ES5 and ESNext. This library is completely free to use, licensed under MIT.

Why was this library created?

Pretty much every Node.js library for Yahoo Finance is straight up out of date and does not work properly. There is a Python library... But, it's meh at best... A lot of people have blogged about it, but, I've found it somewhat underwhelming. Furthermore, introducing Python into a codebase that doesn't use Python can cause technical debt. The intention is for this library to be the best tool out there for Yahoo Finance. So feel free to critique the implementation. It's strictly typed with verbose interfaces and type definitions. It's a production quality implementation.

Getting Started

As a CLI tool

Install as a global module

npm install @chriscates/yahoofinance --global
# or
yarn add global @chriscates/yahoofinance

Confirm the module works

yf --help

Run commands

yf summary MSFT

...

Read the full documentation at https://yf.chriscates.ca/docs/bash

As a library

Install as a local module

npm install @chriscates/yahoofinance

Import library functions

import { GetProfile } from '@chriscates/yahoofinance';

const Profile = await GetProfile('TSLA');
console.log(Profile);

Also, ES5 compatible

const yahoofinance = require('@chriscates/yahoofinance');

Read the full documentation at https://yf.chriscates.ca/docs/library

SEC & EDGAR

For those who are familiar with EDGAR and of course the Securities Exchange Commission. I would be ecstatic if you reached out to them asking them if I can improve their codebase for EDGAR. I actually need a lot of that data and making web scrapers for that project is cumbersome and is potentially very redundant given the amount of time it would take to create a full fledged scraper. Instead, creating a real API that fully annotates all SEC Form Filings from EDGAR would be a win/win/win (community/them/me). So please, reach out if you found this library useful. It would be amazing to have something directly from SEC instead of Yahoo Finance.


Don't be afraid to open issues if there are any!