Поделитесь ценностью с Nodejs и Pomelo

Я пытаюсь создать userCount значение, и я хочу поделиться этим значением с файлом mupltiple

users.js

var userCount=0;

function increment() {
    userCount++;
}

module.exports.userCount=userCount;

a.js

var users = require('users');
//connection opened
users.userCount++;
log(users.userCount)  //1
// close connection

b.js

 var users = require('users');
    //connection opened
    log(users.userCount)  // the value is 0 i want the count to be  1

Я не эксперт ни по NodeJ, ни по javascript

Мне страшно за недопонимание, потому что я не вижу этот вопрос ни на одном сайте

Спасибо за помощь

0 ответов

Другие вопросы по тегам