Javascript 51
Getting Started With JSBlocks MV-ish FrameWork
JSBLOCKS is a new Model-View-ish framework.It means it handles all MVW,MVC architecture. It provides server side rendering,fast and modularity. The entire framework is built on top of virtual DOM. you can find more information about JSBLOCK in following link. http://jsblocks.com/learn/introduction-why-jsblocks In this demo,”We will learn to install JSBLOCKS and create a simple example”. JSBLOCK can […]
Babel In Browser Compilation of JavaScript
In my previous post we have learnt about Babel installation and basic use of compiling the code to ES5 JavaScript Code. Babel comes with an in-browser compilation option to compile the code in the runtime. In this demo,”We will learn to use in browser compilation for Babel to produce ES5 JavaScript Code during rendering time”. […]
Next Generation JavaScript With Babel
Babel is a compiler for next generation JavaScript. Babel js compiles the ES6+ features to ES5 code. We can find more information about Babel using following URL which points to the home page of Babel. https://babeljs.io In this demo, “We will Learn to install Babel and learn how to use it to test some ES6 […]
Grunt Task For Angular 2 With Remote Template URL
In my previous post We have learnt how to called the TypeScript Compiler-Watcher using NPM.In the previous post We have developed a Angular2 component with inline HTML template. In this post We will create Angular 2 component with HTML template in a separate HTML file and can be called using templateUrl property. In this demo, […]