Haresh Vidja
Haresh Vidja

Reputation: 8496

How to Fix ? DeprecationWarning: 'GLOBAL' is deprecated, use 'global'

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

Answers (1)

CD..
CD..

Reputation: 74166

global.user_session= {};
global.config= require('./config/config.js');

Upvotes: 16

Related Questions