Package Exports
- fietu
- fietu/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fietu) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
FiETU
libreria en beta
INSTALACION
$ npm i fietuEJEMPLOS
PASSWORD
const fietu = require("fietu") //definimos fietu
const password = fietu.password(6)// definimos password, 6 puede ser cualquier numero
console.log(password)Preview
6cGQ|HTWEET
const discord = require("discord.js")
const { Client, Intents, Collection } = require ('discord.js')
const client = new Client({ intents: 32767 })
const fietu = require("fietu")
client.on("messageCreate", async (message) => {
if (message.author.bot) return;
if (message.content === "!tweet") {
const tweet = await new fietu.tweet()
.setAvatar(message.author.displayAvatarURL({ format: 'jpg' }))
.setName(message.author.username)
.setText("HOLAAAAA")
.tweet()
const attachment = new discord.MessageAttachment(tweet, 'tweet.png');
return message.reply({ files: [attachment] });
}
}
client.login("bot_token");