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

chatgpt-scraper-deobfuscated

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

chatgpt-scraper-deobfuscated

Create a free ChatGPT client without API key, no limit, and 100% free.

  • 1.1.0
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

ChatGPT Scraper Deobfuscated

Create a free ChatGPT client without API key, no limit, and 100% free.

This package is a copy of the original package chatgpt-scraper, remade and removed the obfuscated code due to vulnerability issues. Many people started to suspect about obfuscated codes on npm packages, so I remade some of them with human readable code to make them safe.

Credits to: vihangayt_npm

Install

npm install chatgpt-scraper-deobfuscated

How to use?

Note: The function returns a Promise type, so you should use it in an async function with await keyword.

const { ChatGPT } = require('chatgpt-scraper-deobfuscated');

const output = await ChatGPT(prompt);

Example

const { ChatGPT } = require('chatgpt-scraper-deobfuscated');

const output = await ChatGPT('Hello');

console.log(output);

Output

{
    response: {
        type: 'assistant',
        content: 'Hello! How can I assist you today?'
    },
    input: {
        type: 'user',
        content: 'Hello'
    },
    time: 1574 // ← 1.6s
}

License

The GPL-3.0 license.

Keywords

FAQs

Package last updated on 17 Aug 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