vckfnv / NodeJs

node js practice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NodeJs

node js practice

Install Express Framework

  1. I'm using Visual Studio Code.
  2. Press Ctrl+` and make new terminal.
  3. this is general way to install NPM(Node Package Manager)
npm install
npm update 
npm init //produced package.json
  1. Let's make Framework!
npm install -g express-generator
express [projectname] --view=ejs // let's make ejs view
cd [projectname]
npm install
npm init
npm start

Install Nodejs

  1. Enter the website Link: Nodejs image
  1. Download 'LTS version', this would be stable version.

  2. to check if Nodejs installed right, go to cmd and enter 'node' image
    you can check the version and you can go inside of nodejs

  3. If you want to get out of nodejs, press Ctrl+C twice. image

About

node js practice


Languages

Language:JavaScript 64.8%Language:HTML 27.2%Language:CSS 8.1%