@humanwhocodes/disqus-export v1.0.0
Disqus Comment Exporter
If you find this useful, please consider supporting my work with a donation.
Description
Node.js-based utility for exporting your Disqus comments into a JSON file.
Requirements
- Node.js v18+
- A Disqus API key (create a Disqus API Application)
Usage
Note: Set up an environment variable called DISQUS_API_KEY that contains your Disqus API key before running the CLI.
This package is intended to be used on the command line. The easiest way to do that is using npx:
npx @humanwhocodes/disqus-export forum-nameWhere forum-name is the ID of your forum on Disqus.
By default, the CLI will output your data into a file named forum-name-export.json in your current working directory. You can change the output filename by passing in the -o argument:
npx @humanwhocodes/disqus-export forum-name -o out.jsonYou can also install and run locally. When running locally, you can use the shorter CLI name that omits the package scope (disqus-export instead of @humanwhocodes/disqus-export):
npm i @humanwhocodes/disqus-export
npx disqus-export forum-nameLicense
Apache 2.0
Prior Art
- Exporting Disqus comments and adding them to Eleventy by Raymond Camden
3 years ago