Skip to main content

Posts

Showing posts from August 10, 2021

Behavioral Interview

blog Front End Behavioral Interview Front End Behavioral Interview Web Developer Job Interview Questions Front End Behavioral Interview Web Developer Job Interview Questions 1. DESCRIBE A WEB DEVELOPMENT PROJECT YOU WORKED ON FROM START TO FINISH. WHAT APPROACH DID YOU TAKE, WHAT CHALLENGES DID YOU FACE, AND HOW WERE YOU SUCCESSFUL? Tip: Be transparent about what a real web development project looks like for you. Highlight your wins, of course, but don’t shy away from being real about the challenges. Interviewers aren’t looking to hear that you never have setbacks (that’

Open Graph Protocol

The Open Graph protocol The Open Graph protocol Introduction The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook. While many different technologies and schemas exist and could be combined together, there isn't a single technology which provides enough information to richly represent any web page within the social graph. The Open Graph protocol builds on these existing technologies and gives developers one thing to implement. Developer simplicity is a key goal of the Open Graph protocol which has informed many of the technical design decisions . Basic Metadata To turn your web pages into graph objects, you need to add basic metadata to your page. We've based the initial version

Webpack

webpack At its core, webpack is a static module bundler for modern JavaScript applications. When webpack processes your application, it internally builds a dependency graph which maps every module your project needs and generates one or more bundles . Since version 4.0.0, webpack does not require a configuration file to bundle your project. Nevertheless, it is incredibly configurable to better fit your needs. To get started you only need to understand its Core Concepts : Entry Output Loaders Plugins Mode Browser Compatibility This document is intended to give a high-level overview of these concepts, while providing links to detailed concept-specific use cases. For a better understanding of the ideas behind module bundlers and how they work under the hood, consult these resources: Manually Bundling an Application Live Coding a Simple Modul

Express Way To Writing APIs

blog Prerequisites To Writing Express APIs Prerequisites To Writing Express APIs This article will cover the basics of express from the perspective of a beginner without concerning it’s self with the underlying…  Prerequisites To Writing Express APIs  This article will cover the basics of express from the perspective of a beginner without concerning it’s self with the underlying mechanisms and theory that underlies the application of the framework.  For starters, what is express JS¿ When introduced, node.js gave developers the chance to use JavaScript to write software