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 🙏

© 2026 – Pkg Stats / Ryan Hefner

convert3x

v1.0.2

Published

A simple utility to convert tab-delimited files to JSON, JSON to tab, and text to Base64

Downloads

7

Readme


convert3x

A simple utility package to convert tab-delimited text files to JSON, JSON to tab-delimited files, and plain text files to Base64-encoded strings.


Installation

You can install this package using npm:

npm install convert3x

Usage

You can use this package to easily convert files from one format to another.

1. Convert Tab-Delimited File to JSON

To convert a tab-delimited text file to a JSON file:

import { convertTabToJson } from 'convert3x';

async function convertFile() {
  try {
    const result = await convertTabToJson('path/to/input.txt', 'output.json');
    console.log(result);  // Example: ✅ JSON saved to: output.json
  } catch (err) {
    console.error(err.message);  // Example: ❌ Failed to convert tab to JSON: [error message]
  }
}

convertFile();

Arguments:

  • inputFile (string): Path to the input tab-delimited file.
  • outputFile (string, optional): Name of the output JSON file. Defaults to output.json.

2. Convert JSON to Tab-Delimited File

To convert a JSON file to a tab-delimited text file:

import { convertJsonToTab } from 'convert3x';

async function convertFile() {
  try {
    const result = await convertJsonToTab('path/to/input.json', 'output.txt');
    console.log(result);  // Example: ✅ Tab-delimited file saved to: output.txt
  } catch (err) {
    console.error(err.message);  // Example: ❌ Failed to convert JSON to tab: [error message]
  }
}

convertFile();

Arguments:

  • inputFile (string): Path to the input JSON file.
  • outputFile (string, optional): Name of the output tab-delimited file. Defaults to output.txt.

3. Convert Text File to Base64-Encoded String

To convert a plain text file to a Base64-encoded string:

import { convertTxtToBase64 } from 'convert3x';

async function convertFile() {
  try {
    const result = await convertTxtToBase64('path/to/input.txt');
    console.log(result);  // Example: Base64 string output or success message
  } catch (err) {
    console.error(err.message);  // Example: ❌ Failed to convert text to Base64: [error message]
  }
}

convertFile();

Arguments:

  • inputFile (string): Path to the input text file.
  • outputFile (string, optional): Name of the output file where the Base64 string will be saved. If not provided, the Base64 string will be returned.

Error Handling

If any operation fails (e.g., due to file reading issues or incorrect format), the methods will throw an error with a descriptive message:

try {
  const result = await convertTabToJson('invalidFile.txt');
} catch (err) {
  console.error(err.message);  // ❌ Failed to convert tab to JSON: [error details]
}

License

MIT License. See the LICENSE file for details.