• OPENDEV HUB V1.0• API STATUS: 100% OPERATIONAL• CLIENT ENGINE: LOADED & CACHED• TRENDING TECH: TAILWIND V4, NEXT.JS 16, RUST, GO• ZERO AUTH REQUIRED
OPENDEVHUB

Command Palette

Search for a command to run...

DEVELOPER RELEASES

DEVELOPER NEWS STREAM

Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

TIL: Skipping Tests in Go
go2021-06-29
Jonas BrømsøJonas Brømsø

TIL: Skipping Tests in Go

Nifty test go test trick

Run tests with -race flag in GoLand 🏎
goland2021-06-29
John DoeJohn Doe

Run tests with -race flag in GoLand 🏎

To understand -race flag better, we can refer to the Go documentation: Data races are among the...

How to set up Golang application performance monitoring with open source monitoring tool
devops2021-06-27
Ankit Anand ✨Ankit Anand ✨

How to set up Golang application performance monitoring with open source monitoring tool

If you want to check our Github repo before diving in 👇 SigNoz ...

Pagination using Gorm scopes
go2021-06-24
Rafael FirminoRafael Firmino

Pagination using Gorm scopes

Gorm is a fantastic ORM writen in Go for gophers. ​ Today I will show you how to create pagination...

Go modules and private GIT repositories
go2021-06-26
Matija KrajnikMatija Krajnik

Go modules and private GIT repositories

Some time ago i stumbled upon an issue that was giving me a headache. I had to download and import...

Error Handling in JavaScript (Golang Style)
javascript2021-06-18
BibekBibek

Error Handling in JavaScript (Golang Style)

In this short article, we are going to see how we can handle error in JavaScript in Golang style. I...

Web app development guide using Golang, Gin and React
go2021-06-24
Matija KrajnikMatija Krajnik

Web app development guide using Golang, Gin and React

This guide will show you how to build full stack Web App from scratch using Go programming language,...

Image upload using Golang and React
javascript2021-06-24
Harsh MangalamHarsh Mangalam

Image upload using Golang and React

Golang is a blockbuster server side language in the field of efficiency and concurrency. If you are a...

Structure project directories
go2021-06-24
Matija KrajnikMatija Krajnik

Structure project directories

It's always good practice to separate your code based on what every part is doing, so it's easier to...

Starting Gin server
go2021-06-24
Matija KrajnikMatija Krajnik

Starting Gin server

First we need to give our Web App a name. We will be making a simple blog, so let's call it RGB...

Docker deploy
go2021-06-24
Matija KrajnikMatija Krajnik

Docker deploy

Our server is finished and almost ready for deploy, which will be done using Docker. Notice that i...

JWT authentication
go2021-06-24
Matija KrajnikMatija Krajnik

JWT authentication

Authentication is one of the most important part of almost every web application. We must ensure that...

Hashing password
go2021-06-24
Matija KrajnikMatija Krajnik

Hashing password

In last section we have created users table in our database, but we are currently storing user's...

Getting Started with Go Context
go2021-06-22
Javad RajabzadehJavad Rajabzadeh

Getting Started with Go Context

Applications in golang use Contexts for controlling and managing very important aspects of reliable...

Instalando asdf e Golang no Ubuntu 20.04
asdf2021-06-23
Alexandre LiberatoAlexandre Liberato

Instalando asdf e Golang no Ubuntu 20.04

Sobre Estava tentando testar essa ferramenta para gerenciamento de linguagens e...

Introduction to Go Fiber
go2021-06-23
Karan Pratap SinghKaran Pratap Singh

Introduction to Go Fiber

What is go fiber? Fiber is a web framework heavily inspired by Express and that makes it...