Latest Insights on App Development for Your Business-Innofied

Tag: Best Practices

  • Top 10 Website Development Best Practices for Newbies & Pro

    I started to nurture the basics associated with website development from scratch to live since 2016. Any guesses about what I found? Well, my study is vast. You may think composing this blog on website development best practices was an easy task. Umm, No! It was not an easy task to build a quality website…

  • 13 Android development best practices we follow at Innofied

    The popularity of Android has created a humongous demand for applications. As developers, it’s our responsibility to ensure that users don’t have a bad experience while using our apps. Here, at Innofied, there are a few Android development tips that we follow to ensure that our consumers/ clients get the optimum experience from the products.…

  • Code optimization and organization in Javascript / jQuery

    (This article is a combined effort of Innofied Javascript developers Puja Deora and Subhajit Ghosh) We have been working on a project for past 8 months (ongoing). Over the course of this project, we have learnt that small tweaks to general coding practices goes a long way in improving the overall performance of the code.…

  • Basket.js: achieve lightning fast performance for website

    Recently I was developing a web application for a client. All was going well in development till it moved  to production, where I had to face a new problem that lead to many a sleepless night. The end-users for our application were mostly from India. You might be aware of the fact that over 85%…

  • 7 Ways to Make Your Code More Reusable

    “Code Reusability” is a common term for developers. Still, when the time comes to apply the rules, they face several difficulties. Here are some simple ideas that help write reusable code and save you time. 1. Proper planning before a project starts: Before you jump to coding, go back a step, gather your team members,…

  • 25 CSS best practices we follow at Innofied

    Dilbert is probably right – if everyone follows the best practices then it may become mediocre. But the fact is: it rarely happens. Only a small number of developers follow good practices while others either aren’t aware of such rules at all or they don’t feel like applying them. There can be multiple reasons for…

  • 10 Node.js best practices you should follow

    Node.js is a platform built on Chrome’s JavaScript engine (i.e. v8 JavaScript Engine); it helps to develop fast, scalable network application. It is basically used in server side coding, handling AJAX requests, maintaining routes for different APIs and manipulating database. Node.js uses an event-driven, non blocking I/O model that makes it lightweight and efficient. Now…

  • 3 Backbone.js routers best practices

    Backbone.js used to have controllers instead of routers in past. Imagine how complex it was to put functionality both in views (read presenters) and controllers! How would you decide where to keep which functionality? Moreover, you could never depend on a single controller if the app was a complex one. But  things are much simpler…