Giter Site home page Giter Site logo

asgarrrr / luna Goto Github PK

View Code? Open in Web Editor NEW
24.0 1.0 3.0 17.79 MB

An adorable discord bot fully customizable created in javascript, using Discord.js and mongoDB that is constantly growing !

Home Page: https://lunadoc.vercel.app/

License: GNU General Public License v3.0

JavaScript 100.00%
nodejs discord discord-js discord-bot command-handler bot luna

luna's Introduction

$ curl -s https://raw.githubusercontent.com/Asgarrrr/Asgarrrr/master/hello.sh | sh

 _____                             
|  _  |___ ___ ___ ___ ___ ___ ___ 
|     |_ -| . | .'|  _|  _|  _|  _|
|__|__|___|_  |__,|_| |_| |_| |_|  
          |___|                    
├── From France.
├── Born on 2000.11.14
└── Joined Github on 2017.02.17

$ waka stats --user Asgarrrr --from 2024-04-30 --to 2024-05-07

 TypeScript  │  86.54%  █████████████████    37 hrs 56 mins
 JavaScript  │  11.21%  ██                    4 hrs 54 mins
       JSON  │   1.02%                        0 hr  26 mins
        CSS  │   0.96%                        0 hr  25 mins
      Other  │   0.26%                        0 hr  06 mins
    ~ Total ─┴─────────────────────────────> 43 hrs 43 mins

$ ls Asgarrrr
├── README.md

├── Languages
│   ├── HTML        CSS         JavaScript      NodeJS
│   └── PHP         C           C++             Python

├── Frameworks
│   ├── Bootstrap   React       TailwindCSS     Symfony
│   └── Vue         

├── Tools
│   ├── VSCode      WebStorm    PyCharm         Docker
│   ├── Git         GitHub      Vercel          Railway
│   ├── Sketch      Figma       Discord         Visual Studio
│   └── Xcode       

└── Databases
    └── MySQL       SQLite      MongoDB         Redis
This presentation is updated automatically every 2 hours, most recently on 07/05/2024, 10:07:05 ( UTC±2 )

luna's People

Contributors

asgarrrr avatar codacy-badger avatar snyk-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

luna's Issues

TypeError on command and even handler

Hey there! You made a very nice bot!

While merging and using the main bot class in which commands and events are handled, I got a TypeError while trying to load the function that includes all the commands and tries to operate on them.
Here's the full error:

/Users/user/Sviluppo/Discord-Bots/bot/index.js:58
                  const command = new (require(`./commands/${catDir}/${cmd}`))(this);
                                  ^

TypeError: require(...) is not a constructor
    at /Users/user/Sviluppo/Discord-Bots/bot/index.js:58:35
    at Array.forEach (<anonymous>)
    at /Users/user/Sviluppo/Discord-Bots/bot/index.js:56:59
    at FSReqCallback.oncomplete (fs.js:163:23)

This is also happening with the event handler
I tried googling and I was suggested to add some end semicolons, but I think the error is about the way the bot tries to operate on files
Here's my commands folder for now:
Schermata 2020-10-27 alle 14 26 33
and also the command handler:

class Bot extends Discord.Client {
  constructor(options) {
    super(options, { autoReconnect: true })
    // ? Configuration File
    this.config = require("./config.json")
    // ? Commands and aliases as collections
    this.commands = new Discord.Collection();
    this.aliases = new Discord.Collection();
    // ? Saves collections to disk thanks to Enchanted Maps
    this.settings = new Enmap({ name: "settings", cloneLevel: "deep", fetchAll: false, autoFetch: true });
    // ? Initializes a new Database
    this.db = require("./resources/DBInit");
    // ? Initializes languages
    this.language = new (require(`./resources/lang/${[this.config.Language] || "English"}`))
    // ? Gets the functions from the bot files

    // TODO Implement a logger item

    // Here we define some utils useful to speed up development
    this.sleep = require("util").promisify(setTimeout);
    // 

    // ? Let's define a new login way
    // ! This will be of substitute for "const bot = new Bot()" and "bot.login" with "new Bot"
    super.login(this.config.token)

    // * —————— Command handler ——————
    readdir("./commands/", (err, cmdDir) => {
      //  If there is error, throw an error in the console
      if (err) { throw err; }
      //  Only include directory
      cmdDir.filter((subDir) => !subDir.includes(".")).forEach((catDir) => {
          //  Browse categories
          readdir(`./commands/${catDir}/`, (err, cmds) => {
              //  If there is error, throw an error in the console
              if (err) { throw err; }
              //  Includes only .js files.
              cmds.filter((file) => file.endsWith(".js")).forEach((cmd) => {;
                  //  Include the file to be able to operate on it
                  const command = new (require(`./commands/${catDir}/${cmd}`))(this);

                  //  Parse the file to retrieve the assigned name.
                  this.commands.set(command.help.name, command);

                  command.conf.aliases.forEach((a) => this.aliases.set(a, command.help.name));

              });
          });
      });
  });

  // * —————— Event handler ——————
  readdir("./events/", (err, events) => {
    //  If there is error, throw an error in the console
    if (err) { throw err; }
    //  includes only .js files
    events.filter((event) => event.endsWith(".js")).forEach((file) => {;
        //  Include the file to be able to operate on it
        const event = new (require(`./events/${file}`))(this);
        //  Executes the file corresponding to the transmitted event.
        super.on(file.split(".")[0], (...args) => event.run(...args, this.ops));
    });
});

Hope we can get to a conclusion!

Also, using this opportunity, can I may ask you how can I make the Bot handlers and loaders more easy to implement commands? That will be awesome!
~ Thanks ❤️

Contribution

Hello I would like to contribute to the Dashboard project : )

My idea is to keep to the ejs stack and use bootstrap 5.0 for design (Dark theme ofc white theme is forbidden by law)

Index (Landing) page will be a list of servers to select from to edit (after authorization with discord oauth2)

I also want to make Dashboard its own and it can work without the Client initializing it

then simple module boxes they can choose to edit general settings and other.

If user is the owner (master) they can watch logs

Let me know if I can contribute and if you have some other plans for Dashboard! Great project btw!

Bot Usage

Hi there,

How can I do the following:
Change prefix
See available commands
Change bot status
Change bot image (No longer my application image and I would like it to be)

Thanks

SetLog Command

Not really a big bug, but the class of the setlog command is named Language :)

Fix?

DiscordAPIError: Cannot send an empty message
at RequestHandler.execute (C:\Users\Sasyy\Dropbox\Il mio PC (DESKTOP-UPMFOB5)\Desktop\Dixie Loves You\node_modules\discord.js\src\rest\RequestHandler.js:154:13)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
at async RequestHandler.push (C:\Users\Sasyy\Dropbox\Il mio PC (DESKTOP-UPMFOB5)\Desktop\Dixie Loves You\node_modules\discord.js\src\rest\RequestHandler.js:39:14) {
method: 'post',
path: '/channels/846777401131270167/messages',
code: 50006,
httpStatus: 400

Help Me,i Can't install Discord.js

Help Me,i Can't install Discord.js

npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | win32 | x64
npm ERR! gyp ERR! configure error
npm ERR! gyp ERR! stack Error: Command failed: C:\Program Files\Python39\python.EXE -c import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack File "", line 1
npm ERR! gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack ^
npm ERR! gyp ERR! stack SyntaxError: invalid syntax
npm ERR! gyp ERR! stack
npm ERR! gyp ERR! stack at ChildProcess.exithandler (node:child_process:326:12)
npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:365:28)
npm ERR! gyp ERR! stack at maybeClose (node:internal/child_process:1067:16)
npm ERR! gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:301:5)
npm ERR! gyp ERR! System Windows_NT 10.0.19041
npm ERR! gyp ERR! command "C:\Program Files\nodejs\node.exe" "C:\Users\censored\Dropbox\Il mio PC (DESKTOP-UPMFOB5)\Desktop\Dixie\node_modules\node-gyp\bin\node-gyp.js" "rebuild"
npm ERR! gyp ERR! cwd C:\Users\censored\Dropbox\Il mio PC (DESKTOP-UPMFOB5)\Desktop\Dixie\node_modules\erlpack
npm ERR! gyp ERR! node -v v16.2.0
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok

Canvas modules?

It shows up when i node the Luna.js:

Error: The specified module could not be found.
\\?\C:\Users\User\Downloads\Luna-master\node_modules\canvas\build\Release\canvas.node
    at Object.Module._extensions..node (node:internal/modules/cjs/loader:1183:18)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (C:\Users\User\Downloads\Luna-master\node_modules\canvas\lib\bindings.js:3:18)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (C:\Users\User\Downloads\Luna-master\node_modules\canvas\lib\canvas.js:4:18)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32) {
  code: 'ERR_DLOPEN_FAILED'
}

*I download the pack from github instead of using git clone, so the file is at "Downloads".
*With Node v16.7.0.

Anyone can help this out, thanks.

Prune issue : Cannot read property 'id' of undefined

Does this do anything? The error left after removing this line.

if (removed.size > 0) {
this.client.db.prepare("INSERT INTO Event('Type', 'DATA') VALUES(?, ?)").run(
"PRUNE",
JSON.stringify({ by: message.author.id, deleted: removed.map((x) => x.id) }),
);
}

TypeError: Cannot read property 'id' of undefined
at /home/user/Documents/Luna-master/Commands/Moderation/prune.js:75:95
at /home/user/Documents/Luna-master/node_modules/@discordjs/collection/dist/index.js:220:20
at Function.from ()
at Map.map (/home/user/Documents/Luna-master/node_modules/@discordjs/collection/dist/index.js:218:22)
at /home/user/Documents/Luna-master/Commands/Moderation/prune.js:75:82
at processTicksAndRejections (node:internal/process/task_queues:94:5)
at async Prune.run (/home/user/Documents/Luna-master/Commands/Moderation/prune.js:67:9)

The bot doesn't erase the amount of messages as specified.
If I tell it to delete 69 messages it only deletes 37.

URI does not have hostname, domain name and tld

It gives me this error and idk how to fix it. Please if you have any suggestions add me on discord: D4rkF1r3#7927
Error: MongoParseError: URI does not have hostname, domain name and tld

Database could not be found

user@user-HP-EliteBook-8460p:~/Downloads/Luna-master$ node Luna.js
/home/user/Downloads/Luna-master/node_modules/better-sqlite3/lib/database.js:32
throw new TypeError('Cannot open database because the directory does not exist');
^

TypeError: Cannot open database because the directory does not exist
at Database (/home/user/Downloads/Luna-master/node_modules/better-sqlite3/lib/database.js:32:9)
at Object. (/home/user/Downloads/Luna-master/resources/DBInit.js:2:37)
at Module._compile (node:internal/modules/cjs/loader:1108:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1137:10)
at Module.load (node:internal/modules/cjs/loader:973:32)
at Function.Module._load (node:internal/modules/cjs/loader:813:14)
at Module.require (node:internal/modules/cjs/loader:997:19)
at require (node:internal/modules/cjs/helpers:92:18)
at new Luna (/home/user/Downloads/Luna-master/Structures/Luna.js:35:26)
at Object. (/home/user/Downloads/Luna-master/Luna.js:16:16)

DiscordAPIError: Cannot send an empty message

DiscordAPIError: Cannot send an empty message
at RequestHandler.execute (/home/user/Documents/Luna-master/node_modules/discord.js/src/rest/RequestHandler.js:154:13)
at runMicrotasks ()
at processTicksAndRejections (node:internal/process/task_queues:94:5)
at async RequestHandler.push (/home/user/Documents/Luna-master/node_modules/discord.js/src/rest/RequestHandler.js:39:14) {
method: 'post',
path: '/channels/804408907354734682/messages',
code: 50006,
httpStatus: 400
}

This is fairly common

issue

Error: Could not load font to the system's font host
at Object.registerFont (c:\Users\Paolo\Desktop\Luna-master\node_modules\canvas\index.js:48:17)
at Object. (c:\Users\Paolo\Desktop\Luna-master\Commands\Fun\Levels\rank.js:30:45)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at Module.require (internal/modules/cjs/loader.js:952:19)
at require (internal/modules/cjs/helpers.js:88:18)
at Luna.loadCommands (c:\Users\Paolo\Desktop\Luna-master\Structures\Luna.js:173:32)
at Luna.start (c:\Users\Paolo\Desktop\Luna-master\Structures\Luna.js:202:14)
at processTicksAndRejections (internal/process/task_queues.js:93:5)

Can Not find module

I keep getting this error

internal/modules/cjs/loader.js:968
  throw err;

Error: Cannot find module 'C:\Users\minec\Desktop\Luna-master\luna.js'
←[90m    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:965:15)←[39m
←[90m    at Function.Module._load (internal/modules/cjs/loader.js:841:27)←[39m
←[90m    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)←[39m
←[90m    at internal/main/run_main_module.js:17:47←[39m {
  code: ←[32m'MODULE_NOT_FOUND'←[39m,
  requireStack: []
}

Module not found??

When i go to run node luna.js i get this..

Error: Cannot find module 'C:\Users\ZestoDaDev\Desktop\Luna-masterr\Luna.js'
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:925:15)
at Function.Module._load (node:internal/modules/cjs/loader:769:27)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:76:12)
at node:internal/main/run_main_module:17:47 {
code: 'MODULE_NOT_FOUND',
requireStack: []
}

Problems installing yarn with npm

#This is all my problem
---> npm install --global yarn
npm WARN checkPermissions Missing write access to /usr/local/lib
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib'
npm ERR! { [Error: EACCES: permission denied, access '/usr/local/lib']
npm ERR! stack:
npm ERR! 'Error: EACCES: permission denied, access '/usr/local/lib'',
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/lib' }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.

npm ERR! A complete log of this run can be found in:
npm ERR! /home/an/.npm/_logs/2021-05-31T19_05_04_058Z-debug.log

TypeError: collected.first is not a function

TypeError: collected.first is not a function
at Play.search (/home/user/Documents/Luna-master/Commands/Music/play.js:232:39)
at runMicrotasks ()
at processTicksAndRejections (node:internal/process/task_queues:94:5)
at async Play.handleQuery (/home/user/Documents/Luna-master/Commands/Music/play.js:113:9)
at async Play.run (/home/user/Documents/Luna-master/Commands/Music/play.js:52:9)

TypeError: client.resolveUser is not a function

This only happens in 4 scripts : unban, avatar, ban, kick

TypeError: client.resolveUser is not a function
at Avatar.run (/home/user/Downloads/Luna/Commands/General/avatar.js:36:35)
at Message.run (/home/user/Downloads/Luna/Events/message.js:97:17)
at Luna. (/home/user/Downloads/Luna/Structures/Luna.js:101:60)
at Luna.emit (node:events:378:20)
at MessageCreateAction.handle (/home/user/Downloads/Luna/node_modules/discord.js/src/client/actions/MessageCreate.js:31:14)
at Object.module.exports [as MESSAGE_CREATE] (/home/user/Downloads/Luna/node_modules/discord.js/src/client/websocket/handlers/MESSAGE_CREATE.js:4:32)
at WebSocketManager.handlePacket (/home/user/Downloads/Luna/node_modules/discord.js/src/client/websocket/WebSocketManager.js:384:31)
at WebSocketShard.onPacket (/home/user/Downloads/Luna/node_modules/discord.js/src/client/websocket/WebSocketShard.js:444:22)
at WebSocketShard.onMessage (/home/user/Downloads/Luna/node_modules/discord.js/src/client/websocket/WebSocketShard.js:301:10)
at WebSocket.onMessage (/home/user/Downloads/Luna/node_modules/ws/lib/event-target.js:132:16)

![Screenshot_20210221_223756]
(https://user-images.githubusercontent.com/55917261/108653846-85487700-7495-11eb-9071-519c6bc1d71a.png)

Deprecated packages

Thanks for your efforts on this bot template.

There's a few packages reported by npm as deprecated, in node v12.13.0, npm 6.12.0:

  • npm WARN deprecated [email protected]: request has been deprecated, see request/request#3142
  • npm WARN deprecated [email protected]: use node-fetch instead
  • npm WARN deprecated [email protected]: This package is deprecated. Use Array.isArray.
  • npm WARN prepublish-on-install As of npm@5, prepublish scripts are deprecated.
  • npm WARN prepublish-on-install Use prepare for build steps and prepublishOnly for upload-only.
  • npm WARN prepublish-on-install See the deprecation note in npm help scripts for more information.

Button and Music Bug

For play.js

TypeError: actions.components[2].setEmoji is not a function
at Play.embedPlayer (C:\Users\User\Desktop\Opal\Commands\Music\play.js:668:35)
at Play.run (C:\Users\User\Desktop\Opal\Commands\Music\play.js:93:24)

For help.js

TypeError: button.defer is not a function
at ButtonCollector. (C:\Users\User\Desktop\Opal\Commands\General\help.js:164:26)
at processTicksAndRejections (internal/process/task_queues.js:93:5)

eror

just wrong ticket

Fixing the counter in the music selector

This is the bug:

me:
!play ecampus ti aspecto remix
bot:
1 | 0:56 | ''TI ASPECTO'' REMIX 😵💥 [Prod. by Sounder]
2 | 10:06 | TI ASPECTO REMIX 10 MIN (leggi descrizione)
3 | 1:00:34 | ''TI ASPECTO'' REMIX [Versione da 1 ora]
4 | 1:01 | THA SUPREME FT. RONALDO - TI ASPECTO RMX
5 | 11:12 | 10 minuti di ti aspecto remix
6 | 1:04 | tha Supreme feat Cristiano Ronaldo - Ti Aspecto…
7 | 2:42 | TI ASPECTO REMIX [Prod. by Sounder]
8 | 0:34 | BLUR REAGISCE AL TI ASPECTO REMIX (Prod by Soun…
9 | 0:57 | TI ASPECTO REMIX // LAUNCHPAD COVER
10 | 3:55 | Ti aspecto RMX - M3FS
exit

me:
1

Bot reproducing 2 instead of 1

commands

what is the commands and how do i add them

Could load system's font host

Error: Could not load font to the system's font host
at Object.registerFont (C:\Users\Svenn\Desktop\New folder\Luna\node_modules\canvas\index.js:48:17)
at Object. (C:\Users\Svenn\Desktop\New folder\Luna\Commands\Fun\Levels\rank.js:30:45)
at Module._compile (internal/modules/cjs/loader.js:1072:14)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1101:10)
at Module.load (internal/modules/cjs/loader.js:937:32)
at Function.Module._load (internal/modules/cjs/loader.js:778:12)
at Module.require (internal/modules/cjs/loader.js:961:19)
at require (internal/modules/cjs/helpers.js:92:18)
at Luna.loadCommands (C:\Users\Svenn\Desktop\New folder\Luna\Structures\Luna.js:173:32)
at Luna.start (C:\Users\Svenn\Desktop\New folder\Luna\Structures\Luna.js:202:14)
at processTicksAndRejections (internal/process/task_queues.js:95:5)

How do i fix this

TypeError: Cannot read property 'id' of undefined, TypeError: Cannot read property 'end' of null

TypeError: Cannot read property 'id' of undefined
at Play.search (/home/user/Documents/Luna-master/Commands/Music/play.js:235:23)
at runMicrotasks ()
at processTicksAndRejections (node:internal/process/task_queues:94:5)
at async Play.handleQuery (/home/user/Documents/Luna-master/Commands/Music/play.js:113:9)
at async Play.run (/home/user/Documents/Luna-master/Commands/Music/play.js:52:9)

TypeError: Cannot read property 'end' of null
at Skip.run (/home/user/Documents/Luna-master/Commands/Music/skip.js:36:28)
at Message.run (/home/user/Documents/Luna-master/Events/message.js:97:17)
at Luna. (/home/user/Documents/Luna-master/Structures/Luna.js:101:60)
at Luna.emit (node:events:390:22)
at MessageCreateAction.handle (/home/user/Documents/Luna-master/node_modules/discord.js/src/client/actions/MessageCreate.js:31:14)

Documentation

Hi

Is there any plans to add documentation?

It would be nice to have a list of all commands and also how the dashboard works

Issue

So I'm getting an error like:
"Invalid oauth2 redirect_uri"
Please, help me.

npm ERROR

C:\Users\adm\OneDrive\Pulpit\bot od zera>npm i
npm ERR! code 1
npm ERR! path C:\Users\adm\OneDrive\Pulpit\bot od zera\node_modules\erlpack
npm ERR! command failed
npm ERR! command C:\Windows\system32\cmd.exe /d /s /c node-gyp rebuild
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | win32 | x64
npm ERR! gyp ERR! configure error
npm ERR! gyp ERR! stack Error: Command failed: C:\Users\adm\AppData\Local\Programs\Python\Python39\python.EXE -c import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack File "", line 1
npm ERR! gyp ERR! stack import sys; print "%s.%s.%s" % sys.version_info[:3];
npm ERR! gyp ERR! stack ^
npm ERR! gyp ERR! stack SyntaxError: invalid syntax
npm ERR! gyp ERR! stack
npm ERR! gyp ERR! stack at ChildProcess.exithandler (node:child_process:326:12)
npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:365:28)
npm ERR! gyp ERR! stack at maybeClose (node:internal/child_process:1067:16)
npm ERR! gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:301:5)
npm ERR! gyp ERR! System Windows_NT 10.0.19042
npm ERR! gyp ERR! command "C:\Program Files\nodejs\node.exe" "C:\Users\adm\OneDrive\Pulpit\bot od zera\node_modules\node-gyp\bin\node-gyp.js" "rebuild"
npm ERR! gyp ERR! cwd C:\Users\adm\OneDrive\Pulpit\bot od zera\node_modules\erlpack
npm ERR! gyp ERR! node -v v16.2.0
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\adm\AppData\Local\npm-cache_logs\2021-05-25T13_43_54_384Z-debug.log

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.