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

txtzip

v1.5.1

Published

Text file bundling tool that preserves file structure

Downloads

1,056

Readme

txtzip

txtzip is a simple command-line tool for developers that bundles all the text files in a project folder into a single text file. It respects .gitignore and automatically ignores the .git folder, making it easy to bundle up your source code for sharing with ChatGPT or other LLMs.

Features

  • Collects all text files from a folder into a single archive.
  • Respects .gitignore rules to exclude ignored files and folders.
  • Automatically skips the .git folder to prevent including Git metadata.
  • Include or Exclude Files: Use the --include (-i) and --exclude (-x) options to include or exclude files based on glob patterns.
    • Recursive Matching: Patterns without a path separator (e.g., *.ts) will match files recursively in all subdirectories.
    • Specific Matching: Patterns with a path separator (e.g., src/**/*.tsx) will match files according to the specified path.
  • Outputs a clean, readable text archive with delineations showing file paths.
  • Overwrite Output File: Use the --overwrite (-w) flag to overwrite the output file if it exists.
  • Chunk Large Output Files: Use the --chunk-size (-c) option to split the output into multiple files when it exceeds the specified size.
  • Include Only Source Code Files: Use the --source-only (-S) flag to include only files with source code-related extensions.
  • Strip Empty Lines: Use the --strip-empty-lines (-e) flag to remove empty lines from files.
  • Support for Configuration File: Specify default options in a txtzip.json file located in the source folder.
  • Environment Variable Support: Set default command-line arguments using the TXTZIP_ARGS environment variable.
  • Check for Updates: Use the --check-update (-u) flag to check if a newer version is available.
  • Version Command: Use the --version (-v) flag to display the current version.
  • Help Command: Use the --help (-h) flag to display detailed help information.
  • Perfect for sharing source files, preparing archives, or uploading to AI prompts.

Installation

You can use txtzip directly with npx or install it globally:

Using npx (no installation required)

npx txtzip --source ./your-folder --output ./your-output.txt

Install globally

npm install -g txtzip

Then run:

txtzip --source ./your-folder --output ./your-output.txt

Usage

Command-line options:

  • --source (-s): The source folder to archive. Defaults to the current working directory.
  • --output (-o): The output file name for the text archive. Defaults to text-archive.txt in the current directory.
  • --overwrite (-w): Overwrite the output file if it exists.
  • --chunk-size (-c): Maximum size of each output file (e.g., 1M, 512k). If specified, the output will be split into multiple files not exceeding this size.
  • --source-only (-S): Only include files with source code-related extensions.
  • --strip-empty-lines (-e): Strip empty lines from files.
  • --include (-i): Include files matching the given glob patterns. Can be specified multiple times.
    • Recursive Matching: Patterns without a path separator (e.g., *.ts) will match files recursively in all subdirectories.
    • Specific Matching: Patterns with a path separator (e.g., src/**/*.tsx) will match files according to the specified path.
  • --exclude (-x): Exclude files matching the given glob patterns. Can be specified multiple times.
  • --check-update (-u): Check for the latest version available.
  • --help (-h): Show help information about the command-line options.
  • --version (-v): Show the current version.

Configuration File: txtzip.json

You can define default options in a txtzip.json file located in the source folder. This allows you to configure txtzip without having to pass all options via the command line.

Example txtzip.json:

{
  "source": "./src",
  "output": "./archive.txt",
  "overwrite": true,
  "chunkSize": "10k",
  "source-only": true,
  "strip-empty-lines": true,
  "include": ["*.ts", "src/**/*.tsx"],
  "exclude": ["node_modules/**", "*.test.js"]
}

How txtzip.json Works:

  • txtzip will look for txtzip.json in the source folder.
  • Options specified in txtzip.json will be used as default values for command-line options.
  • Command-line arguments override the values in txtzip.json.
  • If txtzip.json is not found, the tool will use its built-in defaults.

Environment Variable: TXTZIP_ARGS

You can set default command-line arguments using the TXTZIP_ARGS environment variable.

TXTZIP_ARGS:

  • Contains default command-line arguments as a string (e.g., "-wSe").
  • Arguments specified in TXTZIP_ARGS are parsed and used as defaults.
  • Note: Command-line arguments provided when running the program will override these defaults.

Examples

Include Patterns with Recursive and Specific Matching

  • Include all .ts files recursively:

    txtzip -i "*.ts" --source ./src --output ./output.txt
  • Include only .tsx files in the src directory and its subdirectories:

    txtzip -i "src/**/*.tsx" --source ./ --output ./output.txt
  • Include all .js files in the current directory only (non-recursive):

    txtzip -i "./*.js" --source ./ --output ./output.txt

Set TXTZIP_ARGS to include -w, -S, and -e flags:

export TXTZIP_ARGS="-wSe"

npx txtzip --source ./src --output ./output.txt

Override an argument from TXTZIP_ARGS:

export TXTZIP_ARGS="-wSe"

# Override the overwrite flag to false
npx txtzip --source ./src --output ./output.txt --no-overwrite

Exclude test files and node_modules:

txtzip -x "*.test.js" -x "node_modules/**" --source ./src --output ./output.txt

Chunk Large Output Files

Split the output into multiple files, each not exceeding 1MB:

txtzip --source ./src --output ./output.txt --chunk-size 1M

Check for Updates

Check if a newer version of txtzip is available:

npx txtzip --check-update

Show Version

Display the current version:

npx txtzip --version

Overwrite Output File

Overwrite the output file if it already exists:

npx txtzip --source ./src --output ./output.txt --overwrite

Only Include Source Code Files

Include only files with common source code extensions:

npx txtzip --source ./src --output ./output.txt --source-only

Strip Empty Lines

Remove empty lines from files before adding them to the archive:

npx txtzip --source ./src --output ./output.txt --strip-empty-lines

Combining Flags

You can combine multiple flags and environment variables to customize the output:

export TXTZIP_ARGS="-wS"

npx txtzip --source ./src --output ./output.txt --strip-empty-lines

Getting Help

To display detailed help information:

npx txtzip --help

or

txtzip -h

This will display information about all available options, along with usage examples.

Example Output

=== Start of File: src/index.ts ===
#!/usr/bin/env node
import { readdir, stat } from 'fs/promises';
import path from 'path';
// ... rest of the file contents

=== End of File: src/index.ts ===

=== Start of File: src/utils/helper.ts ===
export function helper() {
  // helper function code
}
// ... rest of the file contents

=== End of File: src/utils/helper.ts ===

Development

Clone the repository

git clone https://github.com/nightness/txtzip.git
cd txtzip
npm install

Build

npm run build

Test locally

npm link
txtzip --source ./src --output ./output.txt

Contributing

Feel free to submit issues or pull requests to improve txtzip. Contributions are always welcome!

License

This project is licensed under the ISC License.