Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

readme.md

title Client-Side Templating
logoImg https://raw.githubusercontent.com/HansUXdev/JavaScript-First/2acf5840c15af96602aceb66303ea69c5b75e344/logo.svg
theme night
transition slide
highlightTheme monokai
slideNumber true
loop true
autoSlide 5000
enableMenu false
enableChalkboard false
autoSlideStoppable true

Project Structure

.
├── /code/
│   ├── package.json
│   ├── index.js
│   ├── /public/
│   │   └── index.html
│   │   └── resume.js
│   │   └── templates.js
│   │   └── index.css
└── readme.md

root directory {.fragment .current-only data-code-focus=1-1 }

/code is where all the example code for the finished project is {.fragment .current-only data-code-focus=2-2 }

/code/package.json a file created with npm init and used to {.fragment .current-only data-code-focus=3-3 }

/code/index.js is where our server-side javascript is. This is where we tell the server which files to provide the {.fragment .current-only data-code-focus=4-4 }

/code/public is a directory where our client-side code goes. {.fragment .current-only data-code-focus=5-5 }

/code/public is a directory where our client-side code goes. {.fragment .current-only data-code-focus=6-6 }


Student Project

.
├── /0-student_files/
│   ├── package.json
│   ├── index.js
│   ├── /public/
│   │   └── index.html
│   │   └── resume.js
│   │   └── templates.js
│   │   └── index.css
└── readme.md

root directory {.fragment .current-only data-code-focus=1-1 }

/code is where all the example code for the finished project is {.fragment .current-only data-code-focus=2-2 }