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

@teamturing/pdf-gen

v1.0.33

Published

`@teamturing/pdf-gen`

Downloads

18

Readme

PDF Gen Package

@teamturing/pdf-gen

Purpose

수학대왕 DB의 문제들을 가지고 PDF를 뽑아내는 npm package

How it works

  1. 문제들은 원래 LaTeX로 렌더링되지만 MathKingProblemPdfGenerator AWS Lambda의 Node서버에 Pupettier를 이용해 Node 환경에서 LaTeX를 렌더링한다음 문제 렌더링의 결과물을 이미지로 저장할 수 있는 함수가 있다.
  2. 서버는 1번의 API를 이용해 미리 모든 문제에 대해 특정 넓이에 대해서 이미지를 만들어둔다.
  3. 이 패키지의 인자로 문제 이미지들과 메타데이터들이 전달되면 PDF를 만들어 S3에 업로드시킨다.

Tech

  • axios: 모든 이미지를 사전에 Buffer화 해두는 역할
  • jimp: 이미지와 관련된 resize같은 동작을 도와주는 순수 JS 라이브러리
  • winston: 로거
  • pdf-kit: peer dependency로 존재하며 PDF생성

Tip

  • 코드내의 docpdf-kit이 제공해주는 객체이며 Doc은 이 패키지안의 코드에 있는 doc을 쉽게 다루게 해주는 wrapper이다.
  • 대충이지만 src/internal/component에 PDF에 요소들을 마치 컴포넌트처럼 렌더링 할 수 있는 시스템이 구축되어있고, 다른 예시를 참고하여 비슷하게 만들어 사용할 수 있다.
  • pdf-kit의 docs를 잘 참고하자.
  • 현재 이 라이브러리는 node환경에서만 동작하지만 pdf-kit의 독스를 보면 웹에서도 동작하게 하기위해 조금 변경해야할 항목들을 수정하면 가능해진다.
  • 문제 배치 및 렌더링 로직은 모두 src/internal/util/ProblemRenderer.ts에 존재하며 문제, 해설 렌더링 모두 담당한다.
  • ⚠️ 모든 static asset은 __dirname을 이용한 상대경로로 정의하자. 그렇지 않으면 사용하는 곳에서 제대로 불러와지지 않을 수 있다.

Scripts

  • t: 정적 검사
  • dev: test/output.pdf로 샘플 pdf 생성, 인자는 index.ts에서 설정
  • watch: watchman을 이용해 src코드가 변할 때 test/output.pdf를 자동생성
  • build: 패키지 빌드, rollup사용, CJS로 빌드됨
  • release: npm에 patch version increment만 수행 후 바로 업로드하는 one line command