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

chatgpt-to-markdown

v1.5.1

Published

Convert ChatGPT exported conversations.json to Markdown

Downloads

16

Readme

ChatGPT to Markdown

Convert ChatGPT conversation JSON files to Markdown format with ease.

npm version

Usage

Go to chat.openai.com > Settings > Data controls > Export data and export your data.

Unzip the file you're mailed and run:

npx chatgpt-to-markdown path/to/your/conversations.json

NO NEED TO INSTALL - npx will automatically install the package if it's not already installed.

This will generate one Markdown file for each chat same directory as the conversations JSON file. The file name will be the chat title, with invalid filename characters replaced by spaces.

Example

Here's an example of the Markdown output for a chat with the title Medium-Style Table CSS:

# Medium-Style Table CSS

- Created: 26/9/2023, 10:10:54 am
- Updated: 26/9/2023, 10:11:19 am

## user

    Generate CSS for a Medium-style table

## assistant

Creating a Medium-style table requires a clean and minimalist design. Here's a simple CSS snippet to help you create a table that resembles the style seen on Medium. This code assumes that you have a basic HTML table structure in place.

```css
/* Resetting some table styles */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
...
```

Installation

npm install chatgpt-to-markdown

API

You can also use chatgpt-to-markdown programmatically in your JavaScript or TypeScript projects.

import chatgptToMarkdown from "chatgpt-to-markdown";

const json = [
  // ... your ChatGPT conversation data
];

const sourceDir = "./output";
const options = {
  dateFormat: (d) => d.toLocaleString(),
};
chatgptToMarkdown(json, sourceDir);

Options

  • dateFormat: A function that takes a Date object and returns a string. Defaults to a string format like "1 Jan 2023 11:30 PM".

Contributing

  • Create a new branch for your feature or bugfix.
  • Make your changes.

Contributing

  • Fork the repository on GitHub and clone the fork to your machine.
  • Run npm install to install dependencies
  • Edit index.js or cli.js, documenting your changes
  • Push your changes back to your fork on GitHub and submit a pull request to the main repository.

Release

npm version minor
npm publish
git push --follow-tags

Release notes

  • 1.5.1: 22 Mar 2024. Handle unicode filenames
  • 1.5.0: 28 Nov 2023. Handle tether_browsing_display, tether_quote and system_error
  • 1.4.0: 29 Oct 2023. Handle multi-modal text from Dall-E
  • 1.3.0: 29 Sep 2023. Set create and update dates from chat
  • 1.2.0: 28 Sep 2023. Added test cases
  • 1.1.0: 26 Sep 2023. Add date format option
  • 1.0.0: 26 Sep 2023. Initial release

License

MIT

Support

If you encounter any problems or have suggestions, please open an issue or submit a pull request.