This is our weekly design news column where we share our favorite design related articles, resources and cool freebies from the past week. Enjoy :)
Tutorials
Raymond Camden shares a very cool proof of concept for drawing a shape on a map and getting back map data from Google Maps.
Using Drawing Tools and Maps to Find Data
Ariya Hidayat does a nice overview of some of changes coming to JavaScript in ECMAScript 6.
Toward Modern Web Apps with ECMAScript 6
Ariya Hidayat show how sometimes searching with Array.prototype.some can be more efficient than forEach.
Searching with Array.prototype.some
A nice Javascript best practices guide from Thinkful.
Javascript Best Practices Part 1
Mary Lou shares a very nice, experimental multi-level off-canvas navigation useful for responsive sites.
Multi-Level Push Menu
Bem Jones-Bey explains some changes to the spec regarding CSS Shapes and float positioning.
CSS Shapes and Float Positioning: What’s Old is New Again
Jarrod Overson explains how he built a JavaScript particle system in 200 lines of code and how it helped him become a better JavaScript developer.
Build a JavaScript Particle System in 200 Lines
Alan Greenblatt shows how to remap the colors of a black and white image to any color combination using SVG filters.
Implementing the Duotone Filter with an SVG Filter
Loktar recreates some Basic programming in JavaScript to create the appearance of 3D spheres using pixels.
3d Shading with Points
John Allsopp discusses ways of taking web sites apps using local storage, application cache and accessing the local file system.
Taking Websites and Apps Offline
Libraries and Frameworks
Rich Harris explains how reactive programming can make your JavaScript code more efficient and how Ractive.js expressions work.
Ractive.js Expressions and the New Wave of Reactive Programming
Krasimir Tsonev discusses a couple of useful features in Sass but also discusses their current limitations.
Two Useful Sass Features and Their Limitations
Hugo Giraudel shares an experiment to recreate the MetaFizzy effect with using pure CSS with Sass.
MetaFizzy Effect with Sass
Alex Young takes a brief look at Facebook’s React UI framework and how it works.
A Look at Facebook’s React
Codeship continues their video series on JavaScript testing with Jasmine, this edition on asynchronous operations.
How to test asynchronous JavaScript with Jasmine
Johnny Simpson shows how to create an animated image gallery using CSS3 animations and a jQuery plugin he created.
Creating Cool CSS3 Animated Modal Windows in an Image Gallery
David Tucker details the process he uses for automating the development and deployment of his static site solution using Grunt.
Automating The Development, Build, and Deployment Process with Grunt
Jack Franklin explains how to mock API calls in a Node application using Nock.
Mocking API Requests in Node tests
Krasimir Tsonev walks through building a complete website with a client side and control panel using ExpressJS.
Build a Complete MVC Website With ExpressJS
Mobile
Raymond Camden shows how to use changeVersion to update a local database in a PhoneGap app.
Updating PhoneGap Databases
New and Updated Libraries and Frameworks
The Brackets Sprint 29 build focused on improving the native shell and “find in files” improvements and “open with” on OSX.
Brackets Sprint 29 Build
JavaScriptMVC 3.3 was released and contains significant changes such as splitting jQueryMX into CanJS and jQuery++.
JavaScriptMVC 3.3 Released!
takeapeek is another Node-based simple static web server with a number of configuration options.
takeapeek
Ground is a Javascript framework for NodeJS written in TypeScript featuring persistence, client-server synchronization and offline support.
Ground Javascript Framework
Peppy is a fast CSS selector engine that has been around for years but has been completely rewritten for version 2.
Peppy
Other stuffs
Adobe released GCview, an open source web application to visualize and monitor memory usage in the V8 JavaScript engine.
GCview, an open source visualization framework for memory management systems
Just a few of the sites I admire most in the area of web development and why.
Sites I Admire in Web Development
Janeth Kent
Licenciada en Bellas Artes y programadora por pasión. Cuando tengo un rato retoco fotos, edito vídeos y diseño cosas. El resto del tiempo escribo en MA-NO WEB DESIGN AND DEVELOPMENT.
Related Posts
Alternative tools for graphic design
There are many people today who only use the following for design purposes Canva as it is a really popular software and website and there is no denying that it…
New graphic window units - CSS
''Intercop 2022' is a project announced by Google, Microsoft, Apple and the Mozzilla Foundation to make all browsers offer the same web experience. The project has 15 focus areas and one…
How to upload files to the server using JavaScript
In this tutorial we are going to see how you can upload files to a server using Node.js using JavaScript, which is very common. For example, you might want to…
How to combine multiple objects in JavaScript
In JavaScript you can merge multiple objects in a variety of ways. The most commonly used methods are the spread operator ... and the Object.assign() function. How to copy objects with…
The Payment Request API: Revolutionizing Online Payments (Part 2)
In the first part of this series, we explored the fundamentals of the Payment Request API and how it simplifies the payment experience. Now, let's delve deeper into advanced features…
The Payment Request API: Revolutionizing Online Payments (Part 1)
The Payment Request API has emerged as the new standard for online payments, transforming the way transactions are conducted on the internet. In this two-part series, we will delve into…
Let's create a Color Picker from scratch with HTML5 Canvas, Javascript and CSS3
HTML5 Canvas is a technology that allows developers to generate real-time graphics and animations using JavaScript. It provides a blank canvas on which graphical elements, such as lines, shapes, images…
How do you stop JavaScript execution for a while: sleep()
A sleep()function is a function that allows you to stop the execution of code for a certain amount of time. Using a function similar to this can be interesting for…
Mastering array sorting in JavaScript: a guide to the sort() function
In this article, I will explain the usage and potential of the sort() function in JavaScript. What does the sort() function do? The sort() function allows you to sort the elements of…
Infinite scrolling with native JavaScript using the Fetch API
I have long wanted to talk about how infinite scroll functionality can be implemented in a list of items that might be on any Web page. Infinite scroll is a technique…
Sorting elements with SortableJS and storing them in localStorage
SortableJS is a JavaScript extension that you will be able to use in your developments to offer your users the possibility to drag and drop elements in order to change…
What is a JWT token and how does it work?
JWT tokens are a standard used to create application access tokens, enabling user authentication in web applications. Specifically, it follows the RFC 7519 standard. What is a JWT token A JWT token…