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

file-merger-cli

v0.5.1

Published

The File Merger CLI is a command-line tool that merges files within a specified directory by extension and outputs the file structure as JSON.

Downloads

21

Readme

File Merger CLI

File Merger CLI는 지정된 디렉토리 내의 파일들을 확장자별로 병합하고, 파일 구조를 JSON으로 출력하는 명령줄 도구입니다.

CLI의 결과물은 사람이 읽는 용도가 아닙니다

English Version (영어 버전)

설치

npm을 사용하여 전역적으로 설치할 수 있습니다:

npm install -g file-merger-cli

설정

이 도구는 홈 디렉토리의 .file-merger/.gitignore 파일을 전역 gitignore 규칙으로 사용합니다. 이 파일을 생성하려면 다음 명령어를 실행하세요:

mkdir -p ~/.file-merger
touch ~/.file-merger/.gitignore

사용법

file-merger <directory> [options]

인자

  • <directory>: 스캔할 디렉토리 경로 (필수)

옵션

  • --log: 로그 파일(merge.log)에 로깅을 활성화합니다.
  • --only <extension...>: 지정된 확장자의 파일만 처리합니다.
  • -o, --output : 결과물이 저장될 디렉토리를 지정합니다. (기본값: ./output)
  • --help: 도움말을 표시합니다.

예시

file-merger /path/to/your/directory --log
file-merger /path/to/your/directory --only js ts
file-merger /path/to/your/directory -o /custom/output/path

기능

  1. 지정된 디렉토리 내의 모든 파일을 스캔합니다.
  2. .gitignore 파일의 규칙을 준수합니다 (전역 및 로컬)
  3. 파일들을 확장자별로 병합합니다.
  4. 디렉토리 구조를 파일 맵 JSON 형식으로 출력합니다.
  5. 로그 파일을 생성합니다 (옵션 사용 시).
  6. 사용자 지정 출력 디렉토리를 지원합니다.

결과

  1. 병합된 파일들은 지정된 출력 디렉토리에 저장됩니다 (기본값: ./output).
  2. 파일 맵 JSON은 출력 디렉토리의 fileMap.json에 저장됩니다.
  3. 로그 파일(활성화된 경우)은 merge.log에 저장됩니다.
  4. 오류 로그는 merge_error.log에 저장됩니다.

주의사항

  • 지정한 출력 디렉토리가 존재하지 않을 경우, 자동으로 생성됩니다.
  • 이미 존재하는 출력 디렉토리를 지정할 경우, 기존 내용이 삭제되고 새로운 결과물로 대체됩니다.