JavaScript
10 articles
JavaScript's map, filter, and reduce methods
JavaScript provides some amazing functions that can be called against your arrays to help filter them, manipulate them, or even reduce them down to a single value or grouped values.
Introduction to ECMAScript 6
The latest in ECMAScript 6 introduces new features to JavaScript which makes it so much more fun to use, while solving problems that have been around for years. The intent of this article is to provide you with resources you can use to start learning ES6 today.
Babel Installation and Configuration
Babel offers a convenient way to transform your ES6 code to JavaScript that all browsers can understand. In this article we'll go over a basic configuration that will enable you to start using it with any project right away.
Configuring Stylus CSS Pre-Processor with Gulp and Sourcemaps
In this article we'll go over how to configure your project to process Stylus files using Gulp. We'll also create source map file which your browser will use to help point you in the right direction of your files when developing
Configuring Gulp With Less CSS Pre-Processor
Less is a CSS pre-processor allowing you to create variables, mixins, and functions in an effort to make your CSS more maintainable.
Using Browser Sync with Gulp for Live Reloading
Browser Sync is a nice tool to use while developing. It allows your browser to reload live when changes are made to your files. For instance, assuming we're watching our CSS file for changes we can have the browser auto refresh/sync when it sees those changes made.
Gulp Watch: Automate Your Gulp Tasks
Gulp watch is perfect for when you're editing project files since it allows you to not have to run the gulp command manually each time.
Configuring Gulp On A New Project
Gulp may seem like a scary thing to wrap your head around at first, but it's actually quite easy to start using once you understand the basics.
Yarn: Publishing a Package
Publishing a package to the npm repository has never been simpler. With a few steps, you can create a package that is redistributable to all of your projects.
Yarn: Fast and Secure Dependency Management
Yarn is a super simple dependency management tool which is way faster to use instead of traditional npm. It acts as a drop-in replacement, so you can get started using yarn right away. The best way to install yarn is by using npm.