Your cart is currently empty!
Tag: javascript
Json-api-normalizer: Why JSON API and Redux Work Best When Used Together
As a web developer, we have to manage the data needed for every application we work on. There are problems when doing so, such as: Fetch data from the back end. Store it somewhere locally in the front-end application. Retrieve the data from the local store and format it as needed by the specific view…
What is Minification?
Web browsers aren’t concerned about the readability of code, when it comes to generating a page or running a script. In order for the file to be executed, minification strips a code file of all data that isn’t required. With minified files, you don’t need to be decompressed before they can be read, modified or…
Setting Up Vim for Modern JavaScript Development
Now, you can do all of your JavaScript editing in Vim. Vim is a text editor. If you’re used to using Notepad (Windows), Sublime Text (Windows / Mac), Atom (Windows / Mac), Nano (Linux), or any text editor, Vim is just another program that allows you to write and edit text. But, it helps your…