Socket
Socket
Sign inDemoInstall

quill.api-test

Package Overview
Dependencies
6
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    quill.api-test

a twitter bot api for node.js this os one option to bypass the pay wall for twiters api


Version published
Weekly downloads
4
increased by100%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

Logo

X (formerly Twitter) Follow

Quill_Api

Quill.api is a replacement for the tradininal twitter api that is trying to make it easy to create amd host a bot. While Quill.Api is currently more limited than the official Twitter API We are working hard on adding a lot more, and we will soon be more capable than the official Twitter API. Twitter(X) is not associated with this prodject.

Installation

Install with npm

  npm i QuillJs-test

Usage/Examples

'use strict';
const { Client } = require('quill.api');
const cookies = require("./cookies.json");
const path = require('node:path');

// Path verible for cookies.json file
const JSONpath = path.join(__dirname , '/cookies.json');

const log = (...args) => console.log(process.uptime().toFixed(3), ...args);

const client = new Client.Client({
    driver: "firefox",
    Headless: true,
});


client.on('debug', log);
client.on('ready', () => 
{
      console.log('client ready');
      var draft = new client.Draft().addText('Hello World!').Send();
});

client.login({ username: 'DISPLAY NAME', password: 'PWD', cookies: JSONpath });

Roadmap

  • Proxy Suport For reading network trafic.
  • Dynamic Client instence.
  • Threads.
  • Gifs. Aperently alredy suported!
  • DM messeging.
  • Changing profile info.
  • creating polls
  • Changing who can reply.
  • groups and lists suport.
  • IDK Comign up with more things to do.

The Gang

we are all a couple of bord tenagers at scool so dont expect thaire to be rollouts evrey week or somthing like that. altho we are in school when summer rolls around we will be able to make more frequent changes to thi prodject.

oh Also This is a simple fun prodject Twitter plees dont take action against us 🥺 im begging.

Feedback

If you have any feedback, please reach out to us at dogeproduce@gmail.com or through the issues tab

© 2023 DogeProductions. All rights reserved.

Keywords

FAQs

Last updated on 04 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc