• 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.

Angular Addicts #20: unit testing the new defer blocks, NGRX Signal store extensions, app architectures & more
angular2023-12-12
Gergely SzerovayGergely Szerovay

Angular Addicts #20: unit testing the new defer blocks, NGRX Signal store extensions, app architectures & more

My favorite Angular resources of November, 2023

Zod - TypeScript-first schema declaration and validation library #7
programming2023-12-12
Nhan NguyenNhan Nguyen

Zod - TypeScript-first schema declaration and validation library #7

✨ Set a Default Value with Zod ✨ Our following example starts similarly to the last: a form input...

Production Ready NodeJS build using Docker and npm
docker2023-12-12
Sumit BhanushaliSumit Bhanushali

Production Ready NodeJS build using Docker and npm

An app with a smooth deployment process is reliable and has fewer bugs because it is easy to release...

Detect what calls your Node.js code
node2023-12-11
AdrianAdrian

Detect what calls your Node.js code

While most of the time it's actively discouraged to detect and react to how your code is called,...

Navigating the Maze of Type-Guarding in JavaScript
typescript2023-12-10
KirillKirill

Navigating the Maze of Type-Guarding in JavaScript

Introduction JavaScript, renowned for its flexibility, introduces unique challenges when...

What’s new in AWS Amplify: Features to Build and Scale Fullstack Apps
javascript2023-12-05
Ali SpittelAli Spittel

What’s new in AWS Amplify: Features to Build and Scale Fullstack Apps

AWS Amplify has rolled out several new capabilities for developers building fullstack applications in...

Generics in React
typescript2023-12-10
Husnain MustafaHusnain Mustafa

Generics in React

What are generics Have you defined a function/method in any language? If so, you probably...

Utiliza el patrón de diseño Strategy 👾
typescript2023-12-09
Jean Carlo Vittory LagunaJean Carlo Vittory Laguna

Utiliza el patrón de diseño Strategy 👾

El patrón de diseño Strategy es una técnica utilizada para definir una serie de algoritmos,...

Zod - TypeScript-first schema declaration and validation library #5
programming2023-12-09
Nhan NguyenNhan Nguyen

Zod - TypeScript-first schema declaration and validation library #5

✨ Extract a Type from a Parser Object ✨ We have a function to print our StarWarsPeopleResults to...

Creating a tailwind plugin shouldn't be that hard, right?
tailwindcss2023-12-09
Blank ParticleBlank Particle

Creating a tailwind plugin shouldn't be that hard, right?

Recently, I came across a site called RealtimeColors.com, It's a pretty cool site that helps you...

Observer Pattern for Beginners
javascript2023-12-03
Vivek AlhatVivek Alhat

Observer Pattern for Beginners

Observer Pattern The observer pattern is a widely used behavioral design pattern. It...

tsParticles 3.0.0 is out. Breaking changes ahead.
showdev2023-12-04
Matteo BruniMatteo Bruni

tsParticles 3.0.0 is out. Breaking changes ahead.

tsParticles 3.0.0 Changelog (link) tsparticles / ...

🔥🔥 Our awesome OSS friends 😍
webdev2023-12-06
ShreyaShreya

🔥🔥 Our awesome OSS friends 😍

The open-source software (OSS) community thrives on collaboration and mutual support. Developers...

GraphQL directives for supercharging your API
graphql2023-12-07
Abdulkadir N. A.Abdulkadir N. A.

GraphQL directives for supercharging your API

Most GraphQL schemas have types representing things that need to be queried, such as Books, Items,...

Sanity Visual Editing & Live Preview Demo Project
webdev2023-12-08
Oleg ProskurinOleg Proskurin

Sanity Visual Editing & Live Preview Demo Project

We've developed a demo project 🚀 to test Sanity's Visual Editing and Live Preview features with...

Typescript's enums may not be what you think
typescript2023-11-08
gingerginger

Typescript's enums may not be what you think

If you're not familiar with what an enum looks like, here you go: enum Direction { Up = 1, ...