Tutorials 4
Electron Desktop Application Installation
Electron framework provides cross platform desktop application development using JavaScript. In this demo, “We will learn to install electron and setup application development environment”. Electron can be installed as npm package using npm install electron-prebuilt –save-dev command.The following screenshot shows the terminal with electron installation. The project structure contains the index.html,main.js and package.json file and […]
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 […]