• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

188
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.

almost 3 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.

almost 3 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 Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error