Web Development
Building A Blog With Eleventy And Netlify CMS – Part 3: Managing Blog Content With Netlify CMS
Episodes Episode 1: Creating The Eleventy Project Episode 2: Adding Blog Posts Episode 3: Managing Blog Content With Netlify CMS This is part 3 of the Building A Blog With Eleventy And Netlify CMS From Start To Finish tutorial series on CodingTheSmartWay.com. In the first two parts of this series we’ve started to create an [...]
Building A Blog With Eleventy And Netlify CMS – Part 2: Adding Blog Posts
Episodes Episode 1: Creating The Eleventy Project Episode 2: Adding Blog Posts Episode 3: Managing Blog Content With Netlify CMS This is the second part of the Building A Blog With Eleventy And Netlify From Start To Finish series on CodingTheSmartWay.com. In the first part we’ve started with an introduction of Eleventy and Netlify CMS [...]
Building A Blog With Eleventy And Netlify CMS – Part 1: Creating The Eleventy Project
Episodes Episode 1: Creating The Eleventy Project Episode 2: Adding Blog Posts Episode 3: Managing Blog Content With Netlify CMS Eleventy is a simple static site generator based on JavaScript. The great thing about Eleventy is that it is zero-config by default but can also be run with configurations options which makes it flexible and [...]
11ty | Eleventy – A Simple Static Site Generator
Eleventy is a simple static site generator based on JavaScript. The great thing about Eleventy is that it is zero-config by default but can also be run with configurations options which makes it flexible and extremely easy to use at the same time. In contrast to other static site generators Eleventy does not force you to use a specific [...]
Using Tailwind CSS With React
In the previous tutorial you’ve learned about the Tailwind CSS basics and how to setup a basic web project with Tailwind. In this tutorial we’re going to take a look at how to use and configure Tailwind CSS in a React project. Setting Up The React Project The first step is to setup the React project by using the create-react-app script [...]
Tailwind CSS For Absolute Beginners
What is Tailwind CSS Tailwind is a utility-first CSS framework. In contrast to other CSS frameworks like Bootstrap or Materialize CSS it doesn’t come with predefined components. Instead Tailwind CSS operates on a lower level and provides you with a set of CSS helper classes. By using this classes you can rapidly create custom design with [...]
NestJS For Absolute Beginners
Welcome to this NestJS tutorial for absolute beginners. In the following you’ll learn NestJS from the ground up which means that we’ll go through all steps which are necessary to get NestJS installed, create a new NestJS project from scratch and implement a first example from start to finish. NestJS is a progressive Node.js framework for [...]
The 2020 Roadmap To Fullstack Web Development
Becoming a fullstack web developer requires you to cover a lot of skills. For beginners it’s often not easy to find the right learning path and to gain quick result. At first sight it might be overwhelming to understand what you need to learn and how everything fits together at the end. This post will give you an overview of [...]
Fetch API – Introduction To Promised-based Data Fetching In Plain JavaScript
Making server requests in JavaScript-based application is a common task. There are different ways of solving that task. Back in the day developers used the XMLHttpRequest (XHR) objects to interact with servers. For the first time it has been possible to retrieve data from a URL without having to do a full page refresh. This was one of [...]
Building A Svelte 3 Todo App From Start To Deployment
In the previous Svelte 3 Quickstart Tutorial we’ve covered the framework basics. Now it’s time to go one step further and apply this knowledge to build a complete Svelte 3 todo application from start to finish. If you like CodingTheSmartWay, then consider supporting us via Patreon. With your help we’re able to release [...]