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

265
Views
How can I import a const from a vanilla Js file that has DOM elements to my express server?

I'm using Firebase to add auth to my site, and I want to export the user const into the express so I can pass it to a route. This is the function to create the user.

const signupForm = document.getElementById('signup');
if (signupForm) {
    signupForm.addEventListener('submit', (e)=>{
        e.preventDefault();
        const email = signupForm.email.value;
        const password = signupForm.password.value;
        createUserWithEmailAndPassword(auth, email, password)
        .then((cred)=>{
            return cred.user;
        })
        
        signupForm.reset();
    })
}

But when I require anything from the firebase file into express I keep getting this error

 const signupForm = document.getElementById('signup');
                    ^
 ReferenceError: document is not defined

I understand that the error is because document is DOM related and can't be run in express, but is there a way for me to export only the user const into express? any help is appreciated and thank you.

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

0

What you need to do is to send a POST request to the route, because the express server and the web page you load are completely separeted.

Add a fetch request like this:

            fetch('/api/users', {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json'
                },
                body: JSON.stringify(cred.user)
            }

And the you handle the data in express.

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!