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

177
Views
Hide specific exports in the npm package

I am new to creating npm packages. I would not want users to be able to import everything from my package, such as the Utils class.

export class Utils implements IUtils {
  // ......
}

How do I avoid it?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can specify the exports key in your package.json. When this is set, only the specified paths can be accessed from the module.

Docs: https://nodejs.org/api/packages.html#exports

The way I usually do this is to create an index.js or index.ts and add that to the exports. Then, anything I want to expose publicly, I export via the index file.

For example:

// index.ts
export { MyPublicClass } from './MyPublicClass'
about 4 years ago · Juan Pablo Isaza 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!