Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@flowdegree/spit-it

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flowdegree/spit-it

A command-line tool to extract and organize source code snippets from projects, enabling easy sharing and collaboration.

  • 2.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

SourceCodeSpitter

SourceCodeSpitter is a command-line tool that generates a single dump file containing all the source code files within a directory, excluding files specified in .gitignore and .spitignore. This tool is useful for quickly collecting source code snippets for sharing or documentation purposes.

demonstration image

Features

  • Recursively traverses the specified directory to collect all source code files.
  • Ignores files and directories specified in .gitignore and .spitignore.
  • Generates a single dump file with source code snippets in the order of traversal.
  • Preserves the file structure by including file names and relative directory paths as comments before each snippet.

Installation

npm install -g @flowdegree/spit-it
# or for local project only
npm install @flowdegree/spit-it

Usage

spitit [options] [directory]

Options

-c, --clear: Clear the console.
-i, --include <extensions>: Include only specific file types (comma-separated, e.g., .js,.css). Use this option to limit the extraction to certain file extensions.
-e, --exclude <extensions>: Exclude specific file types (comma-separated, e.g., .log,.txt). Use this option to exclude certain file extensions from the extraction.

Replace [directory] with the path to the directory you want to generate the source code dump for. If no directory is provided, it will default to the current working directory.

The tool will generate a source_code_dump.txt file in the same directory with all the source code snippets.

Examples

Generate a source code dump for the current working directory:

spitit .

Generate a source code dump for a specific directory:

source-code-spitter /path/to/directory

Extract only JavaScript and CSS files:

spitit --include .js,.css

Extract all files except log and text files:

spitit --exclude .log,.txt

Contributing

Contributions are welcome! Feel free to open an issue or submit a pull request for any improvements or additional features you'd like to see.

License

This project is licensed under the MIT License.

Keywords

FAQs

Package last updated on 28 May 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc