help
help copied to clipboard
:sparkles: Need help with Node.js? File an Issue here. :rocket:
### Details Hi Guys, I understand that Node.js uses a single-thread and an event loop to process requests only processing one at a time (which is non-blocking) and all async...
Help!!!
### Details ```console > nodemon --exec babel-node src/servers.js [nodemon] 2.0.19 [nodemon] to restart at any time, enter `rs` [nodemon] watching path(s): *.* [nodemon] watching extensions: js,mjs,json [nodemon] starting `babel-node src/servers.js`...
### Details I have installed nodejs 14.14 in my pc to work with angular application on visual studio 2019 IDE. In 6 days it was upgraded 3 times from 14.14...
### Details Custom HTTP method with Nodejs HTTP Server? Can we create our own http method? Do we have such a chance or can we read it directly with req.method?...
### Details Is there a way to disable the preview when calling nodejs and showing the REPL. I am using the Read Evaluation Print Loop (REPL) to teach my students...
### Details We're trying to embed Node.js into a simple C++ application following this guide ### https://nodejs.org/api/embedding.html. Downloaded the Source Code and built it successfully using ```shell ./configure make -j4...
### Details **The problem**: I need to quickly switch between many files while here on my `localhost:8080/ `'live service' runned by Edge DevTools that uses node.js as its server, that...
### Details I need to detect when a "middleware stream" proceed the chunks/data to slow. (In other words timedout) This is the output to be generated when the middleware stream...
"Error: MongooseServerSelectionError: getaddrinfo EAI_AGAIN mongo" *I have a docker-compose file that creates a Nodejs app that depends on mongo that is on another docker.* **The compose runs properly but than...
### Details ```js const cipher = Buffer.from(ciphertext, 'base64') const authTag = cipher.slice(cipher.length - 16) // Tag长度16 const data = cipher.slice(0, cipher.length - 16) const decipher = crypto.createDecipheriv('AES-256-GCM', v3key, nonce) decipher.setAuthTag(authTag)...