Skip to content

오픈소스

Yongku cho edited this page Oct 5, 2021 · 28 revisions


유틸리티

Codemirror

PDF to Text, Image to Text

  • Google Drive에서 Google 문서로 보기하면 텍스트로 변환됨

runTypes

amCharts

c3

// subchart: {
//   show: true
// },
zoom: {
  enabled: true,
  initialRange: [
    new Date(labels[labels.length - 8]),
    new Date(labels[labels.length - 1])
  ]
},

대용량 CSV 파일을 위한 CSV 파일 머지 도구

에디터: TinyMCE

IDE 세팅

  • .editorconfig
    • IDE의 코드 세팅을 동일하게 가져간다.
    • charset, indent_style, indent_size, end_of_line 등의 옵션이 있다.

PDF 리더

// AS IS
import pdfjs, {
  PDFDocumentProxy,
  PDFPageProxy,
  PDFPromise,
  ViewportParameters
} from 'pdfjs-dist'

// TO BE
import { getDocument } from 'pdfjs-dist/lib/pdf'
import { PDFDocumentProxy, PDFPromise, PDFPageProxy } from 'pdfjs-dist'
getDocument({
  url: path,
  cMapUrl: 'https://cdn.jsdelivr.net/npm/pdfjs-dist@2.2.228/cmaps/',
  cMapPacked: true
}).promise
Clone this wiki locally