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

@toss/ky

v1.2.0

Published

[ky](https://github.com/sindresorhus/ky) 라이브러리를 CJS-ESM 모두에서 호환되도록 만든 라이브러리입니다.

Downloads

530

Readme

@toss/ky

ky 라이브러리를 CJS-ESM 모두에서 호환되도록 만든 라이브러리입니다.

라이브러리 사용 방법은 ky의 문서를 참고해주세요.

$ node
> require("@toss/ky")
# -> 가능

> await import("@toss/ky")
# -> 가능

왜 필요한가요?

ky 라이브러리는 아래와 같은 문제를 가지고 있습니다.

  • ESM-only 라이브러리이기 때문에 CJS로 require() 하려고 하는 경우 오류가 발생합니다.
  • SSR 대응을 위해서는 ky-universal 라이브러리를 사용해야 합니다.

@toss/kyky 를 쉽게 사용할 수 있도록 이를 개선합니다.

  • ESBuild로 한 차례 빌드함으로써 CJS-ESM 모두에서 사용할 수 있도록 하고,
  • 서버에서도 ky-universal을 쓸지, ky 를 쓸지, 구분할 필요 없이 @toss/ky 만 쓰면 되도록 합니다.

왜 빌드된 결과물이 소스코드에 포함되어 있나요?

  • 빌드된 결과물을 소스코드에 포함하지 않으면 frontend-libraries 내부에서 Jest 등을 실행할 때 내부적으로 require('ky') 가 실행되어서 ERR_REQUIRE_ESM 오류를 만나게 됩니다. 어쩔 수 없이 ky 를 빌드된 상태로 소스코드에 포함하도록 했습니다.
  • 빌드된 결과물을 업데이트하려면 yarn buildky 디렉토리에서 실행해주시고, 변경사항을 커밋해주세요.