Tag: javascript
-
Nice sample table of new features in ECMAScript 6
Just yesterday found by accident this nice page where described in a small and clear examples new features from ES6. Pretty handy to have this table close to peak from time to time, if you forget something. Since we have Babel, it should be super fun and easy to write…
-
How to crazy easily speed up your npm install speed
Thanks to Gavin Joyce i recently found out how easily you could speed up your npm install - just do npm set progress=false and you're done! That's so sweet :) Thanks Gavin.…
-
Getting Javascript-Garden as epub
Recently i started to look into Javascript world and one of the nice starters was mentiond Javascript-Garden . I like to read books on my phone or iPad and therefore online versions are not so nice, because you can't put bookmark on where you stopped reading. Thanks to pandoc, this book…
-
Adding Jasmine autocomplete to Intellij IDEA
So, recently i started to learn Javascript and for unit testing i took Karma + Jasmine. But i faced with one problem - in Intellij IDEA there was no autocomplete for Jasmine and all functions were marked as non-existing ones. After some googling i finally managed to find the solution. Here's…