Nuxt 3 Crash Course #2 - Creating a Nuxt App

Поділитися
Вставка
  • Опубліковано 7 січ 2025

КОМЕНТАРІ •

  • @programmingintwi6784
    @programmingintwi6784 2 роки тому +2

    I just love your accent...... very clear..... Hello from Ghana

    • @NetNinja
      @NetNinja  2 роки тому +2

      😊 Aha, thank you! Hi to Ghana!!

  • @chibuezenmeje4411
    @chibuezenmeje4411 2 роки тому +3

    ah !! This is good news.
    i cant wait for NUXT 3 routing.
    thank you so much for your videos

  • @ddoug1094
    @ddoug1094 2 роки тому +4

    Thanks, exactly what i needed.. I’m from Brazil.
    I will definitely subscribe to your channel and recommend to my friends

  • @gamerevplay
    @gamerevplay 2 роки тому +8

    Respect from Ukraine, you make my life better by this courses 🔥💪🏻

  • @bartoszsowa5140
    @bartoszsowa5140 2 роки тому +2

    Exactly what I needed!

  • @towatch
    @towatch 2 роки тому +1

    😍😍 I'm so excited.

  • @cha0sunity
    @cha0sunity Рік тому +1

    Shaun, you make all of this videos about so many different web development techs. It makes me wonder, when you are actually building something, which do you tend to work with? I know there are a lot of ways to get similar results, but what's your personal preference? Or do you just use whatever you feel like that day?

  • @nahommele45dr6
    @nahommele45dr6 6 місяців тому

    how should i install and use nuxt on linux mint i am getting board of not getting how to run it to my browser

  • @mxd3bill70
    @mxd3bill70 2 роки тому +1

    They changed the procedure. Now, it looks different and we have to configure alot of options on install.

  • @glodusmuspell9069
    @glodusmuspell9069 Рік тому

    where did you get the vue?

  • @catreunion
    @catreunion 2 роки тому

    Thank you teacher 🙏🏻

  • @Miftah-Ul-Uloom
    @Miftah-Ul-Uloom Рік тому +1

    Npm run dev shows "sh: nuxt: command not found".

  • @ConstantineKa
    @ConstantineKa 2 роки тому +1

    Why CLI and not Vite? Vite renders faster and more modern. This is not criticism, but curiosity

    • @VenkatSubash
      @VenkatSubash 2 роки тому +6

      Nuxt uses vite under the hood by default.

  • @mohammadmahdialvansaz8001
    @mohammadmahdialvansaz8001 2 роки тому +2

    Nuxt is great. Thank you

  • @abbeed1
    @abbeed1 Рік тому

    thanks

  • @CipiClaudiuC
    @CipiClaudiuC Рік тому

    min 1:23 "and this my friends is the nuxt application" ... and he opens up visual studio ... really ?

  • @mustafasargol5224
    @mustafasargol5224 2 роки тому +1

    I have a [HTTP/1.1 500 Vite Error] My node version 18.12.1
    At the same time i have a error on the screen ;
    No response returned from render handler: /__nuxt_error?url=/&statusCode=500&statusMessage=Vite+Error&message=[vite-node]+ERR_INVALID_URL_SCHEME]+/node_modules/ufo/dist/index.mjs&stack=%3Cpre%3E%3Cspan+class=%22stack+internal%22%3Eat+/node_modules/ufo/dist/index.mjs%3C/span%3E%3C/pre%3E&data
    What can i do for that? I didn't find any answer

    • @_swordancer_
      @_swordancer_ 2 роки тому +2

      It is a problem with new version of Nuxt 3 RC, there are some solutions but none of them works 100%, I think we just need to wait a few days.

    • @_swordancer_
      @_swordancer_ 2 роки тому +2

      To continue the course for now I would advice to:
      - initiate project:
      - before running "npm install" insert this into a package.json:
      "overrides": {
      "nuxt": "3.0.0-rc.5",
      "nuxi": "3.0.0-rc.5",
      "@nuxt/vite-builder": "3.0.0-rc.5",
      "@nuxt/kit": "3.0.0-rc.5",
      "@nuxt/schema": "3.0.0-rc.5"
      }
      then in nuxt.config.ts add at the top this line:
      import { defineNuxtConfig } from 'nuxt'
      then install dependencies
      now "npm run dev" should work correctly

    • @mustafasargol5224
      @mustafasargol5224 2 роки тому +1

      @@_swordancer_ Thanx your helping but i fixed this problem. It related to be named parent file. The parent file name shouldn't have space. I move the file to desktop and it's fixed.

    • @_swordancer_
      @_swordancer_ 2 роки тому +1

      @@mustafasargol5224That is great, like I have said, there are many solutions online. I have tried your way, I have even copy project folder directly into C disk and named it just "project" but this did not work for me :)

    • @mustafasargol5224
      @mustafasargol5224 2 роки тому +1

      @@_swordancer_ you should take a look from github issues section. People are discussing about it like these problems. It must be issue #8706.