Tools articles

reflow_regions_header

Playing with CSS Regions in Edge Reflow

By Joan Lafferty Kids spend most of their awake hours just playing. This helps them to understand the world and figure out how things work. In fact, the picture above is of my son playing with paint and learning about colors. With Edge Reflow’s latest public release, we are giving you the opportunity to play, learn, […]

simple-api_header

Easy API Scaffolding with Simple-API and Node.js

By Joseph Wegner API’s are often a pain to build. There’s all kinds of moving pieces: routing, data parsing, serialization, database interactions, etc. For years I’ve struggled with writing web API’s in Node.js - there’s just so much complexity required in an API boilerplate. That’s why I wrote Simple API. Simple API is an incredibly easy […]

Code_Generators_Header

Getting a Head Start with Front End Generators

By Jonathan Fielding In this post we will talk about the different generators we can use to get started on our projects. There are many different generators/scaffolders available, and we will cover a few of the most popular and look at how we can use them in our projects. Initializr (www.initializr.com) Initializr was one of the […]

git_header

Changing History with Git

by Peter Bell One of the great things about git is that you can change your version control history. Messed up a commit message or forgot to commit a file? Amend your commit. Made three commits where one would do? Reset the commits and create one new one with all of the changes. However it […]

Top