Home / Blog / Tags / Best-practices
Blog

Tagged Best-practices

Using Getters and Setters in JavaScript

Using Getters and Setters in JavaScript

Creating Objects in Javascript allows complex functionality while exposing only certain functions. Sometimes it's helpful to expose Object properties as well and unless they're simply read-write attributes, it may not be immediately clear how to how[...]

Read more...
Using template strings in ES6

Using template strings in ES6

I bought my first book on JavaScript somewhere around 1998, and the topic of String manipulation was limited to using the "+" operator to join two strings and using the "+=" operator to append to an existing string. For the most part little changed[...]

Read more...
Developing erosion resistant software

Developing erosion resistant software

We often see clients with IT teams and projects that, over time, suffer from software erosion. The business requirements, or the IT landscape around the software, are changing faster than the software. The software team is no longer able to deliver[...]

Read more...
Node.js Performance Tuning

Node.js Performance Tuning

Node.js is a platform built on Chrome's JavaScript runtime for easily building fast and scalable network applications. It provides an event-driven architecture and a non-blocking I/O for application throughput and scalability. That's all well and[...]

Read more...
6 Reasons to deploy Node.js with Nginx

6 Reasons to deploy Node.js with Nginx

Node.js is an amazing platform for creating dynamic web applications. It handles high volumes easily and the npm ecosystem provides hundreds of modules that include some very good pre-built features but, like anything, Node.js has it's limitations.[...]

Read more...