frameworks in javascript

Post on 13-May-2015

136 Views

Category:

Software

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

Overview for frameworks in JavaScript. The lecture was delivered in Hebrew. You can watch it at http://youtu.be/N7IvFtYJr4Y.

TRANSCRIPT

Frameworks in JavaScript

Haim MichaelMay 23th, 2014

All logos, trademarks and brand names used in this presentation, such as the logos of jQueryMobile, AngularJS, MooTools and Node.js, belong to their respective owners. Haim Michael and LifeMichael are independent and not related, affiliated or connected with any of the companies and the technologies mentioned in this presentation.

You can watch the video clip at http://youtu.be/N7IvFtYJr4Y.

Li fe M

ic hae l .c o

m

Table of ContentLi fe M

ic hae l .c o

m● Introduction to JavaScript● JavaScript Frameworks ● Learning Resources● Questions & Answers

Introduction to JavaScriptLi fe M

ic hae l .c o

m● JavaScript is a scripting language running on the web

browser or on the server. It was originally developed by

Netscape and became available in 1995.

● ECMA Script, defined by ECMA-262, is the standard

JavaScript language. ECMA Script defines the very

basic parts of the language

Introduction to JavaScriptLi fe M

ic hae l .c o

m● We can embed the code we write in JavaScript into the

HTML page using the <script> element.

<script type="text/javascript">

function do_something()

{

alert(“Good Morning!”);

}

</script>

Introduction to JavaScriptLi fe M

ic hae l .c o

m● We can alternatively have our code in a separated file

linked with our HTML page.

<script type=”text/javascript” src=”mycode.js”>

</script>

JavaScript Frameworks Li fe M

ic hae l .c o

m● The following websites maintain catalogs of JavaScript

libraries we can use in our code:

http://jster.net/catalog

http://microjs.com

http://www.jsdb.io

Learning Resources

● You can find detailed documentation for the JavaScript

programming language at

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference

Li fe M

ic hae l .c o

m

Learning Resources

● You can find various detailed courses for learning JavaScript

available for free at abelski.lifemichael.com.

Li fe M

ic hae l .c o

m

Questions & Answers

● Three courses you might find interesting include

Software Engineering in PHP

more info

Android 4.4 Java Applications Development

more info

HTML5 Cross Platform Mobile Applications

more info

● If you enjoyed my lecture please leave me a comment

at http://speakerpedia.com/speakers/life-michael.

Thanks for your time!

Haim.

Li fe M

ic hae l .c o

m

Frameworks in JavaScript

Haim MichaelMay 23th, 2014

All logos, trademarks and brand names used in this presentation, such as the logos of jQueryMobile, AngularJS, MooTools and Node.js, belong to their respective owners. Haim Michael and LifeMichael are independent and not related, affiliated or connected with any of the companies and the technologies mentioned in this presentation.

You can watch the video clip at http://youtu.be/N7IvFtYJr4Y.

LifeMic hael.c o

m

Table of Content

LifeMic hael.c o

m● Introduction to JavaScript● JavaScript Frameworks ● Learning Resources● Questions & Answers

Introduction to JavaScript

LifeMic hael.c o

m● JavaScript is a scripting language running on the web

browser or on the server. It was originally developed by

Netscape and became available in 1995.

● ECMA Script, defined by ECMA-262, is the standard

JavaScript language. ECMA Script defines the very

basic parts of the language

Introduction to JavaScript

LifeMic hael.c o

m● We can embed the code we write in JavaScript into the

HTML page using the <script> element.

<script type="text/javascript">

function do_something()

{

alert(“Good Morning!”);

}

</script>

Introduction to JavaScript

LifeMic hael.c o

m● We can alternatively have our code in a separated file

linked with our HTML page.

<script type=”text/javascript” src=”mycode.js”>

</script>

JavaScript Frameworks

LifeMic hael.c o

m● The following websites maintain catalogs of JavaScript

libraries we can use in our code:

http://jster.net/catalog

http://microjs.com

http://www.jsdb.io

Learning Resources

● You can find detailed documentation for the JavaScript

programming language at

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference

LifeMic hael.c o

m

Learning Resources

● You can find various detailed courses for learning JavaScript

available for free at abelski.lifemichael.com.

LifeMic hael.c o

m

Questions & Answers

● Three courses you might find interesting include

Software Engineering in PHP

more info

Android 4.4 Java Applications Development

more info

HTML5 Cross Platform Mobile Applications

more info

● If you enjoyed my lecture please leave me a comment

at http://speakerpedia.com/speakers/life-michael.

Thanks for your time!

Haim.

LifeMic hael.c o

m

top related