Advertisement

Java script the-stack-revisited

May. 15, 2014
Advertisement

More Related Content

Advertisement

Java script the-stack-revisited

  1. Adrian Pomilio / @adrianpomilio / www.pomil.io JavaScript the Stack
  2. JavaScript V8 Node How we got to the stack…
  3. Engines
  4. SpiderMonkey Chakra - JScript Nashorn JavaScriptCore But there is one more… Rhino
  5. https://code.google.com/p/v8/
  6. Fast Property Access Dynamic Machine Code Generation Efficient Garbage Collection https://developers.google.com/v8/design
  7. Server? (aka not the browser)
  8. http://nodejs.org/
  9. https://npmjs.org/
  10. package.json
  11. Note on versioning 1 . 2 . 3 1 – Major Version 2 – Minor Version 3 – Patch Version List your dependencies via: 1.2.x http://blog.nodejitsu.com/package-dependencies-done-right
  12. “Abstraction is one of the greatest visionary tools ever invented by human beings to imagine, decipher, and depict the world.” Jerry Saltz Node - http Express Connect
  13. http://expressjs.com/
  14. Data
  15. Workflows
  16. http://yeoman.io/
  17. “A worflow; a collection of tools and best practices working in harmony to make developing for the web even better.” Grunt Yo Bower
  18. Task Runners
  19. Gruntfile.js – copy task
  20. gulpfile.js – copy task
  21. http://bower.io/ Client Package Management
  22. Bower is JUST a package manager npm install –g bower bower search ….. bower install ….. bower update ….. bower uninstall ….. bower ls / lookup / info / cache-clean https://github.com/bower/bower
  23. Testing
  24. http://lm.eways.ph/5bm Too huge for this preso! Check out the testing sessions http://jster.net/category/testing-frameworks
  25. No disassemble! JavaScript is alive!
  26. http://nodecopter.com https://github.com/rwaldron/johnny-five
  27. Additional Information Nodemon - https://github.com/remy/nodemon Socket.IO - http://socket.io/ More V8 – http://www.youtube.com/watch?v=lZnaaUoHPhs Rules Engine - https://npmjs.org/package/node-rules
  28. Adrian Pomilio / @adrianpomilio / www.github.com/adrianpomilio / www.pomil.io
Advertisement