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 🙏

© 2025 – Pkg Stats / Ryan Hefner

node-pickfile

v1.2.0

Published

選んだファイルをコピーして新しいパッケージを作成する

Downloads

58

Readme

node-pickfile

選んだファイルをコピーして新しいパッケージを作成する
(pick files and make new package)

概要

  • 既存のパッケージから選んだファイルだけを取り出して、新しいパッケージを作成します
  • 取り出すファイルは、自動抽出ではなくファイルリストで指定します
  • ファイルリストは、実行するフォルダからの相対パスを列挙したテキストファイルです
  • 既に存在するファイルをコピーすることが前提のため、ファイルリストに間違い(ファイルが 存在しないなど)があった場合は処理をせず例外を出力します

インストール

$ npm install node-pickfile

Parameters

|Name|Format|Default| |:-|:-|:-:| |prefix|String|pkg@| |savedir|String|| |filename_max|Integer|100| |exclude_extensions|Array|[]|

Example

TEXTFILE

public/html/index.html
public/css/style.css
public/doc/README.txt

JavaScript

var pick = require('node-pickfile'); // import module
pick('1.0.0.txt', {     // <
  prefix: 'release@',
  savedir: 'pkg'        // > pkg/release@1.0.0/~
});

DIRECTORY LAYOUT

.
├──  public // <- コピー元のファイル群の例
↓   ├── html
│   │   ├── index.html
↓   │   ├── about.html
│   │   └── access.html
↓   ├── css
│   │   └── style.css
↓   ├── doc
│   └── README.txt
↓
---︎---------------------
│
├── [FILELIST].txt // <- 必要なファイル群を指定するテキストファイル
│
---︎---------------------
↓
└──  [SAVE_FOLDER][FILELIST] // <- 新規フォルダ名は、[FILELIST]の名前に基づいて生成する
    └── public
        ├── html
        │   └── index.html
        ├── doc
        └── README.txt

今後の課題

  • [x] ファイルリストを基に既存のパッケージからファイルをコピーする
  • [ ] ツリーテキストからファイルリストを作成する
  • [x] 保存先ルートディレクトリを作成する際、既に存在する場合は一旦削除する
  • [ ] オプションから任意の環境を指定する
    • [ ] basedir: 基準となるフォルダ (デフォルト: カレントディレクトリ)
    • [x] savedir: 保存するフォルダの指定(デフォルト: カレントディレクトリ)
    • [x] prefix: 新規フォルダのフォルダ名の接頭辞(デフォルト: pkg@)
  • [x] 処理後に確認のためコピー後のファイルサイズを取得しログに出力する > README