#Blog app
###Objectives:
- Understand express basics
- Build a model in express
- Build routes in express
- Complete RESTful blog app in express
Install mongodb
#Blog app
###Objectives:
Install mongodb
#Intro to Node
###Objectives
Node is the most popular implementation of server side JavaScript.
Line tricks
Ctrl + a
=> Return to the start of the command you're typingCtrl + e
=> Go to the end of the command you're typingCtrl + u
=> Cut everything before the cursor to a special clipboardCtrl + k
=> Cut everything after the cursor to a special clipboardCtrl + y
=> Paste from the special clipboard that Ctrl + u and Ctrl + kCtrl + t
=> Swap the two characters before the cursor (you can actually use this to transport
a character from the left to the right, try it!)Ctrl + w
=> Delete the word / argument left of the cursor#CSS Animations
###Objectives
#HTTP Servers, Ports, & More
###Let's talk servers...
Remember, we discussed servers simply as computer connected directly to the Internet?
###Intro To Http
###SWBAT
###What is a protocol?
In information technology, a protocol (from the Greek protocollon, which was a leaf of paper glued to a manuscript volume, describing its contents) is the special set of rules that end points in a telecommunication connection use when they communicate.
#Angular Filters: Ninja Edition
###Objectives
Before we start the lesson, perform a git pull to get the ninjas-starter code from WDI_DTLA_2
###What are Angular filters?
#Angular Filters
Filters in AngularJS are used to format the value of an expression for user view. This can mean tidying up a number or date as a string (for currency or special date formats), changing how a string is displayed, or limiting/ordering the number of items shown.
###Learning Objectives
#Closures & Lexical Scope
###Objectives
#JavaScript Prototypal Inheritance / Linkage
##When I say prototype, what does it mean to you guys?
Noun: a first, typical or preliminary model of something, especially a machine, from which other forms are developed or copied.
Verb: make a prototype of (a product).
###In Programming
In most languages, there are classes and objects. Classes inherit from other classes.