New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

youtube-comment-gen

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

youtube-comment-gen

Youtube-comment-gen makes it simple to write comments for YouTube videos. Users can enter a video title, a description for the comment, and a tone (such as positive, negative, or appreciative) as parameters to have a comment generated automatically. This

latest
npmnpm
Version
0.4.1
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

youtube-comment-gen

Youtube-comment-gen makes it simple to write comments for YouTube videos. Users can enter a video title, a description for the comment, and a tone (such as positive, negative, or appreciative) as parameters to have a comment generated automatically. This library can be useful for people who want to quickly generate comments for personal or commercial use, such social media managers or marketers.

Installation

You can install youtube-comment-gen by doing npm install youtube-comment-gen or yarn add youtube-comment-gen.

Params

Youtube-comment-gen allows you to create simple youtube comment from

  • a videoTitle,
  • a description, and
  • a tone.
ParameterTypeInformation
videoTitleStringThe title of the video you want a comment on
descriptionStringDescribe what you want the comment to be about
toneStringSpecify the attitude or feeling of the comment.

Example

const { Writebot } = require('writebot');
const YoutubeCommentGen = require('youtube-comment-gen');

Writebot.initialize({
  apiKey: API_KEY,
});

Writebot.write(YoutubeCommentGen, {
  videoTitle: 'Huawei Just Overtook Apple. Time For Phase 2.',
  description: 'A comment of a user who find the video poorly worked on.',
  tone: 'Deceived'
}).then((e: any) => console.log(e.data.choices[0].text));
This video is incredibly misleading. It implies that Huawei is now in some kind of position of dominance, when in reality it's still a long way from overtaking Apple. Poorly done.

FAQs

Package last updated on 14 Jan 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