Guest User

Untitled

a guest
Jun 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. convention over configuration:
  2. less flexible,
  3.  
  4. diffrerent javascript frameworks:
  5. angular: made by google, support a few versions: 1,2,4,5,6
  6. knockout: older
  7. ember has a front-end component
  8. react: alot of buzz around it, complete reversal of what you know about the web - definitely get learning on it, but not the first one to start on
  9. vueJS; the one we will be learning in this class. pretty new, but light - doesn't hold alot of memory and loads into browswer fast
  10.  
  11. some people feel like there shouldn't be a front-end framework at all
  12. don't discount just writing normal vanilla JS. form your own conventions.
  13.  
  14. don't just call it 'Vue' - call it VueJS to avoid confusion
  15.  
  16. MVC
  17. model - how you interact and associate with your data
  18. view - how you display information
  19. controller - houses your logic
  20.  
  21. 2 way binding:
  22. interaction between where the data is stored and displayed - if you change one, you change the other.
Add Comment
Please, Sign In to add comment