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

repo2pdf

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

repo2pdf

A Node.js utility for generating a PDF document from a GitHub repository

  • 2.1.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Repo-to-PDF

Repo-to-PDF is a tool that allows you to convert a GitHub repository into a PDF file. It clones the repository, processes the files, and then creates a PDF.

Example PDF

FreeCodeCamp repository was converted into a PDF from 42,998 files to 186,453 pages in under 2 minutes. This conversion is purely for example and stress testing purposes. All content belongs to the original authors at FreeCodeCamp. You can view the PDF here. Screenshot 2023-05-24 212226

Installation

To use Repo-to-PDF, you have two options: cloning the repository from GitHub or installing it directly using NPX. Choose the method that suits you best.

Cloning the Repository

  1. Clone the repository:
git clone https://github.com/BankkRoll/Repo-to-PDF
  1. Navigate to the Repo-to-PDF directory:
cd Repo-to-PDF
  1. Install the dependencies:
npm install
  1. Build the script
npm run build
  1. Run the script:
npm start

Installing with NPX

This will download and install the latest version of Repo-to-PDF from the NPM registry.

  1. Install Repo-to-PDF using NPX:
npx repo2pdf
  1. Run Repo-to-PDF:
repo2pdf

Usage

Once you have installed Repo-to-PDF, you can use it to generate PDF files from GitHub repositories.

  1. The script will install and start running. You will just follow the prompt:

You will be prompted to provide the following information:'

  • Whether or not you want to clone a repository or use a local repository
    • The path to the local repository (if you chose to use a local repository)
    • The URL of the repository you want to clone (if you chose to clone a repository)
  • Whether or not you want line numbers in the pdf
  • Whether or not you want highlighting in the pdf
  • Whether or not you want to remove comments from the code
  • Whether or not you want to remove empty lines from the code
  • Whether or not you want one big file or one PDF pr. file in your repo
    • When picking one big file you get 2 extra options:
      • Whether or not you want to add page numbers
      • Whether or not you want to add a table of contents (Coming in the future)
  • The name of the output PDF file or output directory
  • Whether or not you wish to keep the cloned repository after generating the PDF

The script will then clone the repository, process the files, and generate a PDF document based on the provided information.

Please note that you need to have Node.js installed on your system in order to run Repo-to-PDF.

Configuration

Repo-to-PDF automatically ignores certain file types and directories (e.g., .png, .git). To customize the files and directories to ignore, you can add a repo2pdf.ignore file to the root of your repository.

Please note that if you use a local repository, the repo2pdf.ignore file must be in the root of the repository directory. And you might need to add more directories to the ignore list, as the script not automatically ignores different build files and directories.

Example of file structure

{
    "ignoredFiles": ["tsconfig.json"],
    "ignoredExtensions": [".md"]
}

Troubleshooting / FAQ

Q: I'm getting an error "Failed to install [package-name]". What should I do? A: Make sure you have Node.js and npm installed on your system. Try running the following command to install the required package manually:

npm install [package-name]

Q: How can I customize the styling of the generated PDF? A: You can modify the code in clone.ts or syntax.ts to change the font, font size, colors, and other styling options for the PDF document.

Contributing

We welcome contributions! Here's how you can help:

  • Report bugs: If you find a bug, please create an issue on GitHub describing the problem.
  • Suggest enhancements: If you think of a way to improve Repo-to-PDF, we'd love to hear about it! Create an issue on GitHub to share your ideas.
  • Write code: If you'd like to contribute code to fix a bug or implement a new feature, please fork the repository, make your changes, and submit a pull request.

License

Repo-to-PDF is open source software, licensed under the MIT License. See the LICENSE file for more information.

Keywords

FAQs

Package last updated on 20 Jul 2023

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