GithubHelp home page GithubHelp logo

Comments (5)

SnitchRUS66 avatar SnitchRUS66 commented on June 12, 2024 1

Yes, that's what I did. After 6 hours of experimenting, I came up with success. If register middleware as

serverMiddleware: {
    '/api': '~/index'
},

It turns out that the req.session is undefined in nuxtServerInit.
But if register middleware as

serverMiddleware: [
    '~/index'
],

It starts work correctly. Maybe I misunderstand something? This issue also related to nuxt/nuxt#5119

from express-template.

Atinux avatar Atinux commented on June 12, 2024

Can you give an example please? Basically you simply need to add the express-session here: https://github.com/nuxt-community/express-template/blob/master/api/index.js#L5

from express-template.

Atinux avatar Atinux commented on June 12, 2024

Ok so the point is that you want to use req.session in nuxtServerInit, so yes you can do this.

You can also do:

serverMiddleware: [
  require('express-session')(/* options */)
]

from express-template.

Coinhexa avatar Coinhexa commented on June 12, 2024

What happens if nuxt is on the frontend at localhost:3000 and express is a separate backend at localhost:8000 with express-session, how does it work there

from express-template.

yfliao90 avatar yfliao90 commented on June 12, 2024

Yes, that's what I did. After 6 hours of experimenting, I came up with success. If register middleware as

serverMiddleware: {
    '/api': '~/index'
},

It turns out that the req.session is undefined in nuxtServerInit. But if register middleware as

serverMiddleware: [
    '~/index'
],

It starts work correctly. Maybe I misunderstand something? This issue also related to nuxt/nuxt#5119

Thanks to your answer I finally struggled out my problem.

I guess

serverMiddleware: [ '~/index' ],

means

serverMiddleware: [ { path : '/', handler: '~/index'} ],

Only if this express-session server middleware applied to whole routes will it work.

from express-template.

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.