Skip to content

Instantly share code, notes, and snippets.

View jdomingu19's full-sized avatar
🤍

Jesús Domínguez jdomingu19

🤍
View GitHub Profile

Useful BASH Commands

A curated list of bash commands, organized from beginner to advanced. Each command includes a short explanation and a ready‑to‑copy snippet.

header_hello_bash

Basic Commands

These are the fundamental commands every developer should know. They cover file and directory management, navigation, and basic inspection.

Useful NPM Commands

A curated list of npm commands, organized from beginner to advanced. Each command includes a short explanation and a ready‑to‑copy snippet.

header_hello_nodejs

Basic Commands

Getting started with npm often means learning the essential commands that help you initialize projects, install or remove packages, and check your environment setup. These commands form the foundation of everyday Node.js development, giving you the ability to quickly scaffold applications, manage dependencies, and verify versions. Think of them as

// Hello, TypeScript! @jdomingu19
// Playground 005: Generic Function
(() => {
/**
* A generic function that returns the same value it receives.
*
* @typeParam T - The type of the input and output value.
* @param value - The value to be returned, of type `T`.
* @returns The same value provided as input, preserving its type.