Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

node.js

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?

like image 319
Haresh Vidja Avatar asked Aug 09 '16 09:08

Haresh Vidja


1 Answers

global.user_session= {};
global.config= require('./config/config.js');
like image 70
CD.. Avatar answered Sep 18 '22 08:09

CD..