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

tenenger7125-npm-publish-ts-babel-test

v0.0.12

Published

npm publish test

Downloads

2

Readme

Hello NPM

Print 'Hello, npm!' in the console.

Why use Babel with Typescript?

최신 JavaScript 기능 지원

  • Babel은 최신 ECMAScript(ES) 기능을 지원하는 다양한 플러그인을 제공하여 최신 자바스크립트 기능을 사용할 수 있다.

빠른 트랜스파일링 속도

  • Babel은 타입 검사를 무시하고 코드 트랜스파일을 하기 때문에 빌드속도를 단축한다.
  • typescript 명령어를 통해 타입 검사 및 타입 파일을 생성한다.

트리셰이킹

  • Babel은 Webpack과 같은 번들러와 함께 사용하면 트리 셰이킹을 지원하여 사용되지 않는 코드를 제거하고 번들 크기를 줄일 수 있습니다.

알게된 점

타입스크립트와 바벨을 함께 사용하면 더 편하다.

  • 타입스크립트 명령어로는 d.ts 파일을 생성하고, 바벨의 경우에는 오로지 빌드만 했기 때문에 빠른 빌드가 가능하다.

오류

babel.config.js 파일과 ECMAScript

  • package.json에 type을 module로 했고 build를 진행했을 때 특정 파일에서 CommonJs를 쓰고 있으니 ECMAScript를 써야한다는 오류가 나왔다.
  • 처음에는 빌드할 파일에 문제가 있는 줄 알았는데, 알고보니 babel.config.js이 module.exports 를 사용하고 있어서 오류가 발생했다.
  • babel.config.js파일을 export default로 내보내거나, babel.config.json 파일로 변경해서 사용해서 해결할 수 있다.

dist/index.js가 dist/main.js를 읽어오지 못한다.

  • tsconfig.json 파일에서 상대 경로 및 확장자를 생략하는 속성을 추가했다.(baseUrl)
  • 그리고 babel.config.js 파일에서 상대 경로 및 타게팅 파일 확장자 속성을 가진 플러그인을 추가했다.(module.resolver)
  • 배포를 했더니 트랜스파일링된 dist/index.jsdist/main.js를 읽어오지 못한다는 오류가 발생했다.
  • 알고보니 typescript는 javascript를 따르기 때문에 기존 자바스크립트 처럼 확장자를 붙여야 한다고 한다.
  • https://github.com/microsoft/TypeScript/issues/42151