Skip to content
Advertisement

How to refer a variable in Node.js from another file

I am using node.js to build an app where I have a lot of static text (may change over months) in the code. I want to move the text in a separate file and refer that file data as a variable in the handler file.

E.g.

JavaScript

The above is original file code. What I want to do is move the below code to a separate file:

JavaScript

And there after use something like require(./newfile.js) to refer to that as a variable in the handler file.

The issue I am facing is this is not a valid JSON, but an object with JSON structure so unsure how to work around this .

Advertisement

Answer

In newfile.js

JavaScript

Then import it in your original file:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement