CodeMirror is a JavaScript text editor package which you can integrate with your applications. I was trying to integrate the respective Angular package of CodeMirror which is called as @ctrl/ngx-codemirror into my application. When I started to integrate codemirror, I was facing fold gutter issue which I have explained in this blog. Recently, there was... Continue Reading →
JSVidCon 2020 – Live Blog
JSVidCon is a virtual conference where developers from all over the world can share and gain knowledge on four frontend frameworks such as Angular, Vue.js, React.js and Node.js. All the four tracks will happen parallely. The live blog of this event starts at May 7th, 2020 at 2 PM GMT+0. Stay tuned. The Angular Jamstack... Continue Reading →
How to increase performance of your Angular applications
Angular is an open-source front-end framework developed by google which is a complete rewrite of Angular JS. To know more about Angular, I have written an detailed blog on Introduction to Angular, where you can get more idea on it. There are certain things that we'll code now, and we will justify it that we... Continue Reading →
TypeScript – How to break forEach?
Really? Do you want to do that? So basically, you cannot use break, continue, return statements inside a forEach because it is like an callback function, which behaves like an normal function. But, Never stop until you find a solution I just found out three ways of doing it, The ugly wayThe Controversial wayThe fun... Continue Reading →
TypeScript 3.1
TypeScript is an free, open-source and cross-platform language that builds on top of modern JavaScript. To know more about TypeScript you can refer their official documentation. You can able to install the latest version of TypeScript via npm like, npm install -g typescript@latest The following editor supports typescript: Visual Studio 2017 Visual Studio 2015 Visual... Continue Reading →