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, […]
Angular 2 With TypeScript Compiler Configuration JSON File
In my previous post we have learnt to setup TypeScript Compiler watcher for compiling Angular2 code to JavaScript.We have also developed a Angular2 component and bootstrapped it to rendered in browser.I know It looks very lengthy process to setup with the Angular2 code.The Angular2 team should work on this get it simple. The TypeScript Compiler […]