Over 10 years we help companies reach their financial and branding goals. Engitech is a values-driven technology agency dedicated.

Gallery

Contacts

411 University St, Seattle, USA

engitech@oceanthemes.net

+1 -800-456-478-23

Blog

Understanding Microservices

In short, microservices are small autonomous services that work together. Most developers are already familiar with distributed systems so the general idea behind microservices is definitely not something new to them.

Blog

JavaScript: BigInt

The latest ES2020 defines nine data types. Six data types that are primitives, checked by the typeof operator, null, Object and Function. Primitives are undefined, Boolean, Number, String, Symbol and the new one is BigInt. For the first time in JavaScript we can store numbers bigger than a Number, in other words, store whole numbers larger than 253 – 1.

Blog

JavaScript: Class Fields

Class fields is a new feature in JavaScript. This proposal started as two proposals: public fields and private fields proposals but it is now combined in one. Right now, it is in Stage 3 of TC39 so we can expect it to be in our everyday code really soon.

Blog

The Current State of Software Accessibility

We have seen drastic improvements and advancements in the accessibility of computer software over the last two decades. The first generation of computer software saw their designs make several assumptions including: all users could read screen displays all users could hear and react to sounds from computing devices all users could use standard keyboards and […]

Blog

The impact of COVID-19 on Telehealth in the UK

The COVID-19 pandemic has caused tremendous changes throughout daily life—and in the medical world as well. Not only have providers across the country postponed selective procedures, but many providers also encourage people to avoid making appointments in the office to reduce their risk of exposure to COVID-19. But what do you do if you still […]

Blog

JavaScript Template Literals

Template literals are a new JavaScript feature introduced in ES2015 (ES6) that enhances working with strings and adds new interesting constructs used by many popular libraries such as GraphQL and styled-components.