Skip to main content

Posts

Showing posts from September, 2015

How can improve you website speed performance ?

First of all for checking you website speed 'Past You website link the above website search bar 1) https://developers.google.com/speed/pagespeed/insights/ 2) https://gtmetrix.com/ There is lot of more website available for check speed of your website After Analysis Then most of error modify Js file reduce and Reduce the Size of Image and file more more How you can reduce your jsquery and js file must be jscompress http://jscompress.com/ you can upload your file here the its automatically compress you file for Images Reduce Size go to http://compresspng.com/

Angularjs Step3

 This example is using AngularJS 1.2.20 Code index.html script.js <!DOCTYPE html> <html> <head>   <script src="angular.js"></script>   <script src="script.js"></script> </head> <body ng-app>   <div ng-controller="simpleController">     <strong>First name:</strong> {{firstName}}<br />     <strong>Last name:</strong> <span ng-bind="lastName"></span><br />     <strong>Full name:</strong> {{getFullName()}}<br ...

AngularJs Tutorial Step 2

 This example is using AngularJS 1.2.20 Code index.html <!DOCTYPE html> <html> <head>   <script src="angular.js"></script> </head> <body ng-app ng-init="firstName = 'John'; lastName = 'Doe';">   <strong>First name:</strong> {{firstName}}<br />   <strong>Last name:</strong> <span ng-bind="lastName"></span> </body> </html> Get the full source code Description ...

What is the differences between Node JS, Ext JS, AngularJS? [duplicate]

AngularJS AngularJS is a full frontend MVC framework for JavaScript web applications. It was built at Google and provides a way to quickly build large, single-page web applications. Like jQuery, it is included into a page using the tag, and is itself written in JavaScript. Unlike jQuery, it is meant to be a framework upon which an entire web application is built. It actually includes a minimal version of jQuery by default. If you're looking to learn AngularJS, I recommend EggHead's video tutorials. You'll need to have a very solid understanding of JavaScript first, since writing any Angular requires a deep understanding of prototyping, scope, and various other JavaScript aspects. The AngularJS website has a page of example projects built with AngularJS, if you're so inclined. Node.js Remember how I told you that JavaScript ran in the browser, but I mentioned that there was one big exception to that? Node.js is that exception. It's a command-li...