Useful Webpack DefinePlugin UsagesWhat the plugin does The Webpack DefinePlugin allows you to create global constants which can be configured at compile time and used in your webpack bundle. Example constant definitions: plugins: [ //... new webpack.DefinePlugin({ PRODUCT...Jan 3, 2017·3 min read
(Some) Webpack Configuration Options ExplainedI've been migrating a big project that used requirejs optimizer to bundle all the javascript modules to Webpack. As everybody knows Webpack's documentation is not the best but the community has helped writing about their experiences and doing tutoria...Apr 30, 2016·6 min read
Javascript ES6 Classes for Java DevelopersI'm part Java part Javascript developer, so one of the first things I wanted to know when I saw the new ES6 classes is what they can do, how are they similar to Java classes. So these are my findings: We will analyze: Inheritance Accessors Static...Sep 16, 2015·6 min read
Adding CSS with RequirejsProblem In one of my projects I was using requirejs and I had the situation where I had html templates with links to external css files, after I appended these templates to the DOM, the javascript that needed to use that styled DOM didn't have the st...Sep 12, 2015·3 min read
How to register your library or component in BowerBower is a package manager for the web. It offers a generic, un-opinionated solution to the problem of front-end package management. Bower depends on Node and npm. It's installed globally using npm: npm install -g bower To register a new package: Th...Jun 3, 2013·1 min read
SVG/VML views in your Backbone app with RaphaelHi! Now: Presenting backbone.raphael You may already know the famous Backbone javascript library that lets you build an MV* architecture in the client. And perhaps you also know Raphael, that gives you the opportunity to abstract you from the browser...May 28, 2013·2 min read
Introduction to RaphaelJSRaphaël is a small JavaScript library that should simplify your work with vector graphics on the web. If you want to create your own specific chart or image crop and rotate widget, for example, you can achieve it simply and easily with this library. ...Mar 13, 2013·1 min read