Categories
Angular Java Script Tutorials

Barrel file benefits in JavaScript

Barrel file is a single place to re export your functions, variables etc for your modules. I have divided this post into Introduction Caveats Case Study

Categories
Angular Tutorials

Fix Angular Error: Cannot set base providers because it has already been called

Those of you who are getting into angular testing, normally face this error. Usually this happen when we set the testing environment for Angular. These are the lines These are the culprits TestBed.initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting() ) // or wrapped in beforeAll beforeAll(() { TestBed.initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting() ) }) Diagnosing & Solution I might not have […]

Categories
Electron Tutorials

Writing your first app with Electron

This post is in continuation with the previous posts about creating desktop application using Electron app framework I have covered Introduction in previous post. Our Approach We can get started with two approaches Bottom to top: With this approach we can start really from basics like words, sentence and paragraph and build up. Top to […]

Categories
Opinions

Getting Started with Electron

Let’s build a cross platform apps with Electron, with the languages you already use in your daily work. They are HTML, CSS and JavaScript. Intermediate knowledge of JavaScript is enough. I assume you already know, how to use node and it’s npm packages. You are good to go to create your first desktop application. I […]

Categories
Opinions

Web Development Terms Roundup

In this very first roundup of web development terms we are going to cover following topics: These definitions are just my personal opinions.  Library Library is like a book library you can take one or another. You can take one piece or whole bunch of it. You can write your application or extend it however you want […]