development, css, htmlJuly 22, 2016By Sean AmarasingheSAFARI CSS HACKSApplying changes only for Safari has been always a challenging task. Also adding the fact that Safari has changed since version 6.1 makes it even harder. In this article we are going to discuss Safari CSS hacks.
development, css, htmlJuly 17, 2016By adminWRITING FORMS IN REACT AND REDUXrWiting forms in React and Redux can be challenging, having to deal with forms and fields. In this article we are going to build couple of form using an exisiting library sepcifically for Redux called react-redux-form.
development, javascript, es6July 11, 2016By adminUSING ES6 WITH BABELSome of the modern browsers are yet to catch up with the new language additions to ES6. This means we have to use Babel to transpile our code into ES5.
development, javascriptJune 30, 2016By adminFUNCTIONAL PROGRAMMINGAbstract control flow and operations on data with functions in order to avoid side effects & reduce mutation of state
development, javascriptJune 27, 2016By adminREACT & NIGHTWATCHNightwatch is an end-to-end test framework. The reasons nightwatch is your best choice can be decided upon the reasons described in this article.
development, javascriptJune 22, 2016By adminWEBPACK EXPORT MODULESYou may be working in a complex project, where multiple isolated modules need to be imported into a single parent module, you might want to configure Webpack.config to enable exporting modules.
development, javascript, node.jsJune 20, 2016By adminNPM SCRIPTSTask runners like Gulp or Grunt have been go to choice for the front end projects for last few years. Gulp being the latest between the two, and being the popular choice for last couple of years, one might wonder what’s wrong with it.
development, javascript, react.jsJune 16, 2016By adminREACT STATELESS FUNCTIONAL COMPONENTSReact stateless functional components are pure JavaScript functions that only have a render() function and no lifecycle methods like componentDidMount.
development, node.jsJune 02, 2016By adminNODEJS PATTERNSA design pattern is a general, reusable solution to a commonly occurring problem. In this article we are going to look at some common design patterns we can use for Node.js.