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

nodepapago

v3.1.2

Published

Papago translator(Unofficial)

Downloads

98

Readme

nodepapago - 비공식 파파고 라이브러리.

TypeScript Passed License

  • Note: It can stop working anytime.
  • 전달: 이 프로그램은 언제라도 작동을 멈출 수 있습니다.
  • English

NPM

설치

npm install nodepapago

Github

https://github.com/PinMIlk/nodepapago

npm

https://www.npmjs.com/package/nodepapago

예시

import Translator from 'nodepapago';

new Translator({
    parameter: {
        target: 'ko',
        text: 'So far, so good!'
    }
}).translate()
    .then(res => console.log(res))
    .catch(e => console.log(e));
// Expected output: '지금까지, 너무 좋아요!'

new Translator({
    parameter: [
        {
            source: 'en',
            target: 'ko',
            text: 'Morning, sir.'
        },
        {
            source: 'en',
            target: 'ko',
            text: 'Morning, ma\'am.'
        }
    ],
    honorific: true
}).translate()
    .then(res => console.log(res))
    .catch(e => console.log(e));
// Expected output: [ '안녕하세요, 선생님.', '안녕하세요, 부인.' ]

new Translator({
    parameter: [
        {
            source: 'en',
            target: 'ko',
            text: 'Morning!'
        },
        {
            source: 'en',
            target: 'ko',
            text: 'Morning, baby!'
        }
    ],
    verbose: true
}).translate()
    .then(res => console.log(res))
    .catch(e => console.log(e));
// Expected output: sooooo long...

Translator.detect('So far, so bueno!')
    .then(res => console.log(res))
    .catch(e => console.log(e));
// Expected output: 'it'

설정

| 키 | 설명 | 타입 | 필수 | 기본값 | | ---- | ---- | ---- | ---- | ---- | | parameter | 매개변수 (리스트) | TranslateParameter \| TranslateParameter[] | Y | - | | honorfic | 높임말 | boolean | N | false | | verbose | 결과를 json으로 내보낼 지 결정합니다. | boolean | N | false | | multi | 다중 번역 | boolean | N | false |

매개변수

| 프로퍼티 | 설명 | 타입 | 필수 | 기본값 | | ---- | ---- | ---- | ---- | ---- | | source | 원본 텍스트 언어 코드 | string | N | detect | | target | 번역할 텍스트 언어 코드| string | Y | - | | text | 번역할 문장 | string | Y | - |

언어 감지

| 매개변수 | 설명 | 타입 | 필수 | | ---- | ---- | ---- | ---- | | text | 언어를 감지할 문장 | string | Y |

언어 코드

| 코드 | 언어 | |----|----| | ko | 한국어 | | en | 영어 | | ja | 일본어 | | zh-cn | 중국어(간체) | | zh-tw | 중국어(번체) | | hi | 힌디어 | | es | 에스파냐어 | | fr | 프랑스어 | | de | 독일어 | | pt | 포르투갈어 | | vi | 베트남어 | | id | 인도네시아어 | | fa | 페르시아어 | | ar | 아랍어 | | mm | 미얀마어 | | th | 태국어 | | ru | 러시아어 | | it | 이탈리아어 | | detect | 자동 감지 |

변경점

v2.2.1

  • 해싱 알고리즘 변경

v2.2.4

  • 해싱 알고리즘 변경

v3.0.0

  • 전체 소스 변경

v3.0.1

  • 해싱 알고리즘 변경

v3.1.0

  • 해싱 알고리즘 변경
  • 모듈화

v3.1.1

  • UUID 생성 부분 변경(기존 Papago 방식 → UUID Module 사용)
  • 약간의 경량화
  • README.md File 기본 언어를 한국어로 변경

라이선스

nodepapago는 MIT 라이선스를 따릅니다.