Reputation: 8496
How to fix Depricated warning message (node:6136) DeprecationWarning: 'GLOBAL' is deprecated, use 'global'
In my code I have used something like below
// initializing globals
GLOBAL.user_session= {};
GLOBAL.config= require('./config/config.js');
So how to fix warning message?
Upvotes: 7
Views: 14754
Reputation: 74166
global.user_session= {};
global.config= require('./config/config.js');
Upvotes: 16