DEV Community

Discussion on: Laravel 8 Auth (Registration and Login)

Collapse
 
vynxent01 profile image
vynxent01

I can't run (npm install && npm run dev) it gives me an error

At line:1 char:13

  • npm install && npm run dev
  • ~~ The token '&&' is not a valid statement separator in this version.
    • CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
    • FullyQualifiedErrorId : InvalidEndOfLine
Collapse
 
kingsconsult profile image
Kingsconsult

I have not seen this type of error before, try running them one after the other, that is running the commands separately

npm install
and
npm run dev

Collapse
 
vynxent01 profile image
vynxent01

Got it! I thought I was going to run both commands at the same time LOL my bad thaaank you kingsley!