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

global-message-converter

v1.5.0

Published

A converter that transforms hardcoded text into a format recognizable by internationalization library.

Downloads

496

Readme

Global Message Converter

global-message-converter는 React 애플리케이션 내 하드코딩된 텍스트를 탐지하여 글로벌 메시지 시스템(react-intl)에서 요구하는 형태로 변환하는 커맨드 라인 도구입니다. 이 라이브러리를 사용하면 간편하게 변환이 가능합니다. 현재 한국어만 다른 언어로 변환이 가능합니다.

CHANGELOG: 이곳에서 최신 업데이트 내역을 확인하세요.

변환 예제

  1. JSX 내부에 존재하는 TEXT 변환
//변환 전
<div>안녕하세요.</div>

//변환 후
<div>
    <FormattedMessage id='greeting' defaultMessage='안녕하세요.' />
</div>

시작하기

이 라이브러리를 사용하려면 Node.js가 설치되어 있어야 합니다. 그런 다음 npm을 사용하여 라이브러리를 설치할 수 있습니다.

npm install -g global-message-converter

사용법

설치 후, 아래의 명령어를 사용하여 라이브러리를 실행할 수 있습니다.

gmc [command]

명령어

convert

하드코딩된 텍스트를 탐지하여 글로벌 메시지 시스템이 읽을 수 있는 형태로 변환합니다.

사용 예시

gmc convert -t <파일 또는 폴더 경로> -m <메시지 파일 경로>

옵션

  • -t, --target <target>: 변환 대상이 되는 파일 또는 폴더를 입력해 주세요.
  • -m, --message <message>: 메시지 파일 경로를 입력해 주세요.

예제

하드코딩된 텍스트가 포함된 파일을 변환하려면 다음과 같이 입력합니다.

gmc convert --target ./src/components --message ./messages/messages.json

메시지 파일 형식

메시지 파일은 하드코딩된 텍스트를 변환하는데 사용하는 기준값입니다.

텍스트와 매칭되는 메시지의 키를 탐지합니다. 매칭되는 메시지가 없는 경우 새로운 메시지를 생성하고 신규로 생성된 메시지는 파일 형태(newMessages)로 제공합니다.

JSON 또는 js 형식으로 작성되어야 하며, 각 메시지는 고유한 키와 해당 텍스트 값을 가집니다. 아래는 메시지 파일의 예시입니다.

{
    "welcome_message": "환영합니다, {username}!",
    "loading": "로딩 중입니다...",
    "error": "오류 발생: 데이터를 불러올 수 없습니다.",
    "success": "축하합니다! 모든 작업이 완료되었습니다."
}

js 파일의 경우 아래와 같이 중첩된 구조의 메시지 파일은 인식하지 못합니다.

export default {
    ko: {
       "welcome_message": "환영합니다, {username}!",
       "loading": "로딩 중입니다...",
       "error": "오류 발생: 데이터를 불러올 수 없습니다.",
       "success": "축하합니다! 모든 작업이 완료되었습니다."
    },
    en: {
        ...
    }
}

중첩되지 않은 형태로 변환하여야 정상적인 메시지 변환이 가능합니다.

export default {
   "welcome_message": "환영합니다, {username}!",
   "loading": "로딩 중입니다...",
   "error": "오류 발생: 데이터를 불러올 수 없습니다.",
   "success": "축하합니다! 모든 작업이 완료되었습니다."
}

기여 방법

  1. 저장소를 포크합니다.
  2. 브랜치를 생성합니다. git checkout -b feature/기능명
  3. 변경사항을 커밋하고 푸시합니다.
  • 버그 제보: 버그가 발견되면 Issues 섹션에 새로운 이슈를 작성해 주세요. 문제를 명확히 설명하고 재현 방법을 포함하면 도움이 됩니다.
  • 기능 요청: 새로운 기능 제안도 언제나 환영합니다! 제안 내용을 자세히 설명해 주시면 검토에 큰 도움이 됩니다.

라이센스

이 프로젝트는 MIT 라이선스에 따라 배포됩니다.