Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

2.2K
Views
how to import constants from another file in node.js

Node.js v16.1.0

I am trying to import constants from another js file in the same directory. But i am not being able to do so.

constants.js

export const API_URL = 'http://localhost:8080';
export const MAX_THREADS = 8;

solution.js

/**
 * Import constants from the constants.js file
 * 
 * Each console.log should log a separate constant
 */

import { MAX_THREADS } from "./constants.js";
over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

You should do something like the following.

constants.js

const API_URL = 'http://url.com'
const MAX_THREADS = 5

exports.API_URL = API_URL
exports.MAX_THREADS = MAX_THREADS

solution.js

const { API_URL, MAX_THREADS } = require('./constants');
over 4 years ago · Santiago Trujillo Report

0

Have you enabled ES modules? Read about it here: https://nodejs.org/api/esm.html#esm_enabling

over 4 years ago · Santiago Trujillo Report

0

Node.js >= v13

You only need to follow below step be able to use ECMAScript modules.

Add "type": "module" in your package.json.

{
  ...
  "type": "module"
}
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!