Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

print libuv threadpool size in node js 8

This link purely specifies that libuv provides a thread pool which can be used to run user code and get notified in the loop thread. Its default size is 4, but it can be changed at startup time by setting the UV_THREADPOOL_SIZE environment variable to any value. (the absolute maximum is 128).

So, in package.json, I set scripts field as below (NOTE: I am using Windows 7, Node JS 8.11.3, nodemon, express 4.16),

Code snippet from package.json

.
.
.
"scripts": {
    "start": "SET UV_THREADPOOL_SIZE = 120 && node index.js",
  },
.
.
.

Code for index.js

var express = require('express');
var app = express();

var server = app.listen(3000, function(){
    console.log('LIBUV Threads: ', process.env.UV_THREADPOOL_SIZE); // this returns 'undefined'
});

How can I be assured that thread pool size is set? I want to print it out here in index.js as above.

like image 402
Ankur Soni Avatar asked Jun 26 '26 22:06

Ankur Soni


1 Answers

You shouldn't have spaces in your set command.

set UV_THREADPOOL_SIZE=120 && node index.js

Also you should start your Node.js program by invoking the start script:

npm start

Otherwise the environmental variable won't be set and you will continue to get undefined when accessing it in your code.

If you are using Nodemon, you can ensure your npm script is invoked by running the command with an extra argument:

nodemon --exec npm start
like image 86
Tsvetan Ganev Avatar answered Jun 28 '26 13:06

Tsvetan Ganev