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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ahang/stock

v0.1.4

Published

특정 미국 주식의 **주가 변동과 총수입(매출), 순이익, 분석가 분석** 데이터를 크롤링 해주는 패키지입니다.

Downloads

17

Readme

@ahang/stock

특정 미국 주식의 주가 변동과 총수입(매출), 순이익, 분석가 분석 데이터를 크롤링 해주는 패키지입니다.

개인 웹 프로젝트를 위해 제작된 패키지입니다.

issue badge issue badge

Installation

npm i @ahang/stock

Usage

getHistoricalData()

Type: date, number

특정 미국 주식의 1년 간의 주가 변동 데이터json 형식으로 리턴합니다.

const stock = require('@ahang/stock')

const data = await stock.getHistoricalData('AAPL')
// [
//    {
//      date: 2021-03-31T00:00:00.000Z,
//      open: 121.650002,
//      high: 123.519997,
//      low: 121.150002,
//      close: 122.150002,
//      adj_close: 122.150002,
//      volume: 118323800
//    },
//    {
//      date: 2021-03-30T00:00:00.000Z,
//      open: 120.110001,
//      high: 120.400002,
//      low: 118.860001,
//      close: 119.900002,
//      adj_close: 119.900002,
//      volume: 85671900
//    },
//    ...
//    ...
// ]

getEarningData()

Type: number

특정 미국 주식의 현재부터 내년까지의 총수입(매출) 데이터json 형식으로 리턴합니다.

const stock = require('@ahang/stock')

const data = await stock.getEarningData('AAPL')
// {
//    currentYear: {                현재년도
//        numberOfAnalysts: 40,     참여한 분석가 수
//        average: 4.45,            평균 매출 예측
//        high: 4.1                 높은 매출 예측
//        low: 4.89                 낮은 매출 예측
//    },
//    nextYear: {                   내년
//        numberOfAnalysts: 39,     ...
//        average: 4.69,
//        high: 3.64,
//        low: 5.5
//    }
// }

getRevenueData()

Type: string, number

특정 미국 주식의 현재부터 내년까지의 순이익 분석 데이터json 형식으로 리턴합니다.

const stock = require('@ahang/stock')

const data = await stock.getRevenueData('AAPL')
// {
//    currentYear: {              현재년도
//      numberOfAnalysts: 36,     참여한 분석가 수
//      average: '333.48B',       평균 순이익 예측
//      high: '316.27B',          높은 순이익 예측
//      low: '343.55B',           낮은 순이익 예측
//      salesGrowth: '21.50%'     성장률 예측
//    },
//    nextYear: {                 내년
//      numberOfAnalysts: 35,     ... 
//      average: '347.92B',
//      high: '291.56B',
//      low: '386.5B',
//      salesGrowth: '4.30%'
//    }
// }

getPriceTargetData()

Type: number

특정 미국 주식의 분석가 분석 데이터json 형식으로 리턴합니다.

const stock = require('@ahang/stock')

const data = await stock.getRevenueData('AAPL')
// {
//    numberOfAnalysts: 26,   참여한 분석가 수
//    average: 151.83,        기업 평균 주가 예측
//    high: 175,              기업 높은 주가 예측
//    low: 80,                기업 낮은 주가 예측
//    buy: 20,                구매를 추천하는 분석가 수
//    hold: 4,                보류를 추천하는 분석가 수
//    sell: 2                 판매를 추천하는 분석가 수
// }