When creating new react application, create-react-app is very handy command. Following commands can create and start a basic react app. Although simple, for a beginner it is difficult to understand what is running behind the scene. For getting better understanding of how our react app is working we can make it from scratch. First create…
In traditional web apps, server would process the data, generate HTML and clients would just render the html and run some sprinkled javascript in the page. With client systems (phones, computers) getting more powerful it is now possible to push more processing to clients. Single Page Apps take benefit of this phenomenon. As name suggests,…
Recently, I developed single page web app using Angular.js, Bootstrap, JavaScript and HTML. In this Product List app we can add, delete and display particular thing. Let’s Get Coding First we start by creating ‘app.js‘. This is where JavaScript code will go. In this file create the angular module and controller. Write a code to…
In Part-1 keyboard game, I developed entire game using only JavaScript and HTML. Now in Part-2, I have added CSS for styling. There are no code changes in JavaScript from the previous article. So please refer ‘app.js‘ from Part-1. Here is updated Glitch project: External style sheet can be linked to an HTML document using…
Today I’m going to write about developing a simple introductory keyboard game for toddlers just using basic JavaScript and html. For this, we can use any simple coding editor like VS Code. This can be helpful coding practice for beginners in JavaScript. Game Idea This game should be useful for toddlers to learn keyboard in…