Tag: Web development
-
How to use before and after html pseudo-elements tutorial
Posted on January 19, 2020, Level beginner Resource Length medium
Mark Noonan posted this article about what pseudo-elements are and how to use them, as well as look at some common use cases where these pseudo-elements can make life easier for us.
Tags web-development css frontend
-
Introducing Mocking Hans - An open source tool for creating fake APIs
Posted on January 9, 2020, Level intermediate Resource Length medium
An article by Kevin about Hans. Hans is a small Node application for faking APIs - but not just a single REST API using HTTP. It allows for creating multiple APIs using different ports and protocols (like native WebSockets or even GraphQL).
Tags apis nodejs restful web-development
-
Build and secure a GraphQL server with Node.js
Posted on January 7, 2020, Level beginner Resource Length long
A tutorial from the pen of Roy Derks. Learn how to handle authentication and authorization of a GraphQL server using Node.js and JWTs.
Tags javascript infosec web-development nodejs nosql
-
Pivotal Web Services, SSL, and a Custom Domain
Posted on January 6, 2020, Level beginner Resource Length medium
Pivotal Web Services (PWS) is a great place to set up push button deployments. It's cheaper than Heroku and has some great features. By Austin.
Tags web-development serverless nodejs java kotlin programming
-
An overview of server-side HTTP APIs in Go
Posted on January 4, 2020, Level beginner Resource Length medium
An tutorial by Abhishek Gupta in which he explores the net/http package in Golang which provides the server and client-side APIs for HTTP services.
Tags golang programming apis web-development
-
HTML, CSS and Go: Vugu premise and example
Posted on December 28, 2019, Level intermediate Resource Length medium
An article by Brad Peabody about Vugu andd WwebAssembly. Vugu is a Go library that makes it easy to write HTML markup and Go code which is compiled and run in the browser using WebAssembly.
Tags javascript frameworks nodejs web-development miscellaneous
-
Safer code with container types (Either and Maybe)
Posted on December 27, 2019, Level beginner Resource Length medium
Joan Llenas put this article together about safer types with TypeScript. There are only two hard things in Computer Science: null and undefined.
Tags javascript nodejs web-development programming how-to
-
Build a simple blog using Axios with React
Posted on December 26, 2019, Level beginner Resource Length short
In this article, we are going to learn how to use Axios with React to make API requests and also how to handle the response. We'd learn this by building a simple blog using a fake API server. By Dillion Megida.
Tags react web-development programming how-to apis
-
UX design 101: Thinking in (user) flows
Posted on December 23, 2019, Level beginner Resource Length medium
This session is part of a learning curriculum that author designed to incrementally skill up and empower a team of Designers and Researchers whose skillset and ways of working had fallen behind the times. By Robert Sens.
Tags ux web-development software agile
-
Maybe you don't need a date picker
Posted on December 22, 2019, Level beginner Resource Length medium
Calendar controls, date pickers, date widgets, whatever you call them, however they are described, they follow the same basic principle -- present the user with a calendar to enter a date (and sometimes a time). By Adrian Roselli.
Tags web-development ux software
-
How to request SSL certificates from a Windows Certificate Server
Posted on December 21, 2019, Level intermediate Resource Length medium
The third article by Eric Siron in a series about how to build a fully-functional two-tier PKI environment. This article to show you how to perform the most common day-to-day operations: requesting certificates from a Windows Certification Authority.
Tags infosec devops web-development
-
Const assertions in literal expressions in TypeScript
Posted on December 17, 2019, Level beginner Resource Length medium
With TypeScript 3.4, const assertions were added to the language. A const assertion is a special kind of type assertion in which the const keyword is used instead of a type name. By Marius Schulz.
Tags javascript nodejs programming web-development