Deploy Express Application using Netlify for Free - Serverless Functions | 2024 UPDATE

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

ความคิดเห็น •

  • @EsHbAnBaHaDuR
    @EsHbAnBaHaDuR 4 หลายเดือนก่อน +1

    very nice. My routes are in /Routes/courseRoutes.js file so how can i access them?

  • @sanketmane5838
    @sanketmane5838 5 หลายเดือนก่อน +1

    netlify-lamda has already been deprecated. How to do it without netlity-lamda ?

  • @kadirbozkurt2412
    @kadirbozkurt2412 7 หลายเดือนก่อน +2

    I build my react/node project. If I choose my dist directory as publish directory while deploying, it doesnt call the functions on front end. If I don't choose directory for publish, I see 404 error of netlify. Any solution for that?

    • @SanRanj-l3t
      @SanRanj-l3t 17 วันที่ผ่านมา

      Did u find any solution?

  • @harshasuraweera
    @harshasuraweera 7 หลายเดือนก่อน +1

    Great tutorial... By the way I have a question, is that route prefix "/.netlify/functions/" a must?
    PS: Found that it can be solved by adding a redirect rule to netlify.toml like this
    [[redirects]]
    force = true
    from = "/api/*"
    status = 200
    to = "/.netlify/functions/api/:splat"

    • @thedevcorners
      @thedevcorners  7 หลายเดือนก่อน +1

      Yes, it's a must! Thanks for the addition!

    • @harshasuraweera
      @harshasuraweera 7 หลายเดือนก่อน

      @@thedevcorners np.. seems above rule can only be used with express apps.

    • @girish_bora0
      @girish_bora0 4 หลายเดือนก่อน

      @@thedevcorners Is there a way to deploy from github?

  • @ShikimoriKuruma
    @ShikimoriKuruma 8 หลายเดือนก่อน +1

    wow thanks bro

  • @Bollyspeedup
    @Bollyspeedup 7 หลายเดือนก่อน

    I have actually already made the project in github so can you help me with that

    • @thedevcorners
      @thedevcorners  7 หลายเดือนก่อน

      Glad to hear that! have you followed the instruction in the video?

    • @Bollyspeedup
      @Bollyspeedup 7 หลายเดือนก่อน

      @@thedevcorners I already have made the repo and project before

  • @krakatoom
    @krakatoom หลายเดือนก่อน +1

    Next time maybe don't Screencast a such a huge screensize...😅

  • @danielmayo4315
    @danielmayo4315 7 หลายเดือนก่อน +2

    the video is great just zoom in a little

    • @thedevcorners
      @thedevcorners  7 หลายเดือนก่อน

      Appreciate for the input!

  • @juanpasten6077
    @juanpasten6077 8 หลายเดือนก่อน +1

    It doesnt' work for me but thanks!

    • @thedevcorners
      @thedevcorners  8 หลายเดือนก่อน +1

      Can you give the details why it didn't work?

    • @juanpasten6077
      @juanpasten6077 8 หลายเดือนก่อน

      @@thedevcorners My men! It ended working!! Two things: my gratitude to you for you willing to help. With that I was going to make a good explanation to get help by you and, in the process, I fix it.
      Now I was trying to make a good explanation on why it was break and I get with this:
      ▬ If you use a template string plus some variables, it would not work. I had something like this
      «
      const ROUTES = {
      MOVIES: `movies`,
      HOME: `/`
      }
      app.get(`/.netlify/functions/app/${ROUTES.MOVIES}/:id`, fn)
      »
      That's going to throw an error. This is how I fix that:
      «
      const PREFIX_ROUTES = "/.netlify/functions/app"
      const ROUTES = {
      MOVIES: `${PREFIX_ROUTES}/movies`,
      HOME: `${PREFIX_ROUTES}/`
      }
      app.get(ROUTES.HOME, fn)
      app.get(`${ROUTES.MOVIES}`, fn)
      app.get(`${ROUTES.MOVIES}/:id`, fn)
      »
      Thanks for all =)!

    • @juanpasten6077
      @juanpasten6077 8 หลายเดือนก่อน

      @@thedevcorners I though I made a reply but it was not the case.
      The problem was the use of template strings, I had something like this: `/.netlify/functions/app/${ROUTES.MOVIES}/:id`. That doesn't work for I don't know which reason. But if I extract the prefix into other variable it ended working. Like this: «const ROUTES_PREFIX = "/.netlify/functions/app"; const ROUTES = {MOVIES: `${ROUTES_PREFIX}/movies`}; app.get(`${ROUTES.MOVIES}/:id`, fn)».
      So, thanks so much for your willing to help ♥

  • @dapoafisunlu6136
    @dapoafisunlu6136 8 วันที่ผ่านมา

    Pls make your fonts bigger for God sake.

  • @RajeshTechForge
    @RajeshTechForge 5 หลายเดือนก่อน +1

    Good Tutoriall but too annoying to see the code.
    1. Just zoom In the editor,
    2. Add a soft bg music.

    • @thedevcorners
      @thedevcorners  5 หลายเดือนก่อน +1

      Appreciate it man!

  • @muratyonev6000
    @muratyonev6000 6 หลายเดือนก่อน +1

    It does not work. waste of time

    • @thedevcorners
      @thedevcorners  6 หลายเดือนก่อน

      Thank you :) at least it works for me.