GithubHelp home page GithubHelp logo

Comments (7)

vikramhamal avatar vikramhamal commented on May 23, 2024 1

Check
app.use(cors({
orgin: process.env.CORS_ORIGIN,
credentials: true
})) origin spelling mistake

from chai-backend.

msaad53407 avatar msaad53407 commented on May 23, 2024

Have you imported the app in the index file. I was also having a similar problem and turn out that I had not imported my app file in index file. So give it a shot If you hadn't already

from chai-backend.

vikramhamal avatar vikramhamal commented on May 23, 2024

//app.js

import express from "express";
import cors from "cors";
import cookieParser from "cookie-parser";

const app = express();

// cross orign resource pairing
app.use(cors({
orgin: process.env.CORS_ORIGIN,
credentials: true
}))
app.use(express.json({limit: "16kb"}))
app.use(express.urlencoded({
extended: true,
limit: "16kb"
}))
app.use(express.static("public"))
app.use(cookieParser())

//routes import
import userRouter from "./routes/user.routes.js"

//routes declaration
app.use("/api/v1/users", userRouter)
// // https://localhost:3000/api/v1/users/register

export { app }

There is some mistake in your code . Please check origin spelling in your code .

from chai-backend.

paul-abhirup avatar paul-abhirup commented on May 23, 2024

Check app.use(cors({ orgin: process.env.CORS_ORIGIN, credentials: true })) origin spelling mistake

yup fixed it but still same issue

from chai-backend.

paul-abhirup avatar paul-abhirup commented on May 23, 2024

Have you imported the app in the index file. I was also having a similar problem and turn out that I had not imported my app file in index file. So give it a shot If you hadn't already

tried it

import {app} from "./app.js"

instead of const app = express()
but it is giving error like
Route.post() requires a callback function but got a [object Undefined]

from chai-backend.

paul-abhirup avatar paul-abhirup commented on May 23, 2024

Have you imported the app in the index file. I was also having a similar problem and turn out that I had not imported my app file in index file. So give it a shot If you hadn't already

i am also thinking that my code is having issue with this app.js file

from chai-backend.

paul-abhirup avatar paul-abhirup commented on May 23, 2024

thank You everyone
I had some issue in the asyncHandler.js file . There i forgot to take requestHandler as argument to function

const asyncHandler = (requestHandler) => {
  return (req,res,next) => {
    Promise.resolve(requestHandler(req,res,next)).catch((err) => next(err))
  }
}

so when i was importing app.js it was showing error as Route.post() blah blah
I learned as the codebase in this app is very distributed so its important to check every interconnecting file structure.

from chai-backend.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.