Full Stack Web App using Vue.js & Express.js: Part 1 - Intro

preview_player
Показать описание


00:00 Project description
6:35 Git Setup
17:47 Backend setup
36:40 Register page setup

Рекомендации по теме
Комментарии
Автор

Man, this tutorial is heaven-sent. In 2020, there are rarely any good resources to show how to connect a Node/Express backend to Vue. Much appreciated.

MyBoxer
Автор

server/package.json: use below code for scripts in windows

"scripts": {
"start": "node src/app.js --exec",
"lint": "node node_modules/.bin/eslint **.*.js"
}

AnilKoduri
Автор

00:00 Project description
6:35 Git Setup
17:47 Backend setup
36:40 Register page setup

chiandet
Автор

Its so refreshing to find more intermediate tutorials! thanks!

elidwor
Автор

This series is excellent, not just showing you the basics of a framework, but teaches you how to use technologies such as git, postman, and integrate front end with back end, and shows you how to work on a practical project. Kudos

MistaT
Автор

Thank you for briefly explaining what each thing does. Most tutorials are just "write this line" and never said why.

Auzep
Автор

Just wanted to say thank you. You helped me understand how to do the connection between Front and Back ends which was very confusing for me.

khanriza
Автор

Tried a few tutorials before this must admit the video is clear and informative, first time i grasped the concept, I come from ruby/python background so javascript is challenging to me. Brilliant video

michaelwheeler
Автор

For windows 10, you should install nodemon as a global programm -> npm install -g node nodemon

In package.json put

"start": "nodemon src/app.js --exec \"npm run lint && node\"",

and everything works perfect.

smokiable
Автор

This video was SO useful. Thank you so much. I just love that you didn't just go through the basics, but went through more advanced stuff. I learnt so much because of this.

dogemaester
Автор

Cody, I have only seen the project overview so far - but I already want to thank you. This is really impactful

alihussein
Автор

ok. so i just went through this whole thing over again. started from scratch. i've got it all working. now i'm going to go back to part 2

RossPfeiffer
Автор

Just for the record as long as I see you type "clear" in terminal, you can use <C-l> to do the same (control + L )

elalitte
Автор

Very beginner and it took me couple days to complete this part. Thank you. Really Exited for Part 2. Thank you again.

RoshanSharma-eczk
Автор

Great tutorial. I've watched individual tutorials on Node, Express, and Vue, but had trouble putting all of them together. This tutorial explains it quite nicely.

Rashomon
Автор

Thanks for the tutorial. I am currently shifting from using Meteor to MEVN stack. This was very useful to learn how to initiate such a stack.

VadimMelnicuk
Автор

i have a job because of this course. many thanks to you man.

Автор

This tutorial helped me so much! Nobody else shows how to properly build a stack with vuejs and express.

MrDavidFitzgerald
Автор

20:22 - If I'm not mistaken, part of the benefit of npm scripts is that it adds locally installed (`npm install` without `--global`) executables (node_modules/.bin/) to the PATH environment variable. So, these executables that, if run directly off the command line would need a fully qualified path, don't need that when run from a script within `packag.json` via `npm run x`. That's to say, instead of ...` and `./node_module/.bin/eslint ...` you could just do `nodemon ...` and `eslint ...` respectively.

ytwt
Автор

this is like watching a bob ross doing coding tutorial. thank you sir form explaining it so calm and patiently.

cellarer