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

eclass-cli

v0.1.1

Published

CLI-first 한국공학대학교 e-Class client

Readme

eclass-cli

CLI-first ilos 기반 e-Class LMS client

ilos(지누스) LMS를 사용하는 한국 대학교의 e-Class를 터미널에서 관리.

지원 대학

ilos 기반 e-Class를 사용하는 대학에서 동작합니다.

| 대학 | e-Class URL | |------|-------------| | 한국공학대학교 | eclass.tukorea.ac.kr | | 한국산업기술대학교 | eclass.kpu.ac.kr | | 서울과학기술대학교 | eclass.seoultech.ac.kr | | 한국외국어대학교 | eclass.hufs.ac.kr | | 한세대학교 | eclass.hansei.ac.kr | | 서울예술대학교 | eclass.seoularts.ac.kr | | 동덕여자대학교 | eclass.dongduk.ac.kr | | 서강대학교 | eclass.sogang.ac.kr | | 구미대학교 | eclass.gumi.ac.kr |

SSO 로그인 방식은 대학별로 다를 수 있습니다. 현재 한국공학대학교 포털 SSO가 기본 지원됩니다.

설치

pnpm install -g eclass-cli

또는:

npx eclass-cli <command>

설정

설정파일 ~/.eclass-cli/config.json:

{
  "id": "학번",
  "pw": "비밀번호"
}

또는 환경변수:

export ECLASS_ID=학번
export ECLASS_PW=비밀번호

사용법

수강과목

eclass course ls              # 수강과목 목록
eclass course show 딥러닝     # 과목 상세 (교수정보)
eclass course show 딥러닝 --json

과제

eclass assignment ls                    # 전체 과제
eclass assignment ls --course 딥러닝     # 과목 필터
eclass assignment ls --json             # JSON 출력
eclass assignment submit <RT_SEQ> --file report.pdf                # 과제 제출
eclass assignment submit <RT_SEQ> --file a.pdf --file b.xlsx      # 여러 파일
eclass assignment submit <RT_SEQ> --image screenshot.png          # 이미지 임베딩
eclass assignment submit <RT_SEQ> --file report.pdf --image img.png  # 파일 + 이미지

강의자료

eclass material ls --course 딥러단      # 강의자료 목록
eclass material download <ARTL_NUM>     # 다운로드
eclass material download <ARTL_NUM> -o ./저장경로

기술 스택

  • TypeScript + pnpm
  • Playwright (headless)
  • Commander.js
  • Cheerio (HTML 파싱)
  • Zod (타입 검증)

라이선스

MIT