ReactTodoUIMonolith

(β˜… 301)

πŸ“ ReactTodoUIMonolith πŸ–₯️ Repository is housing the user interface code developed in React for the Todo application's monolithic architecture. This repository is responsible for managing the frontend aspects, including user interactions and presentation logic, all within a single, cohesive structure. 🌟

Owner Repos

azure-aws-gcp-devsecops-mlops-batch-18 β˜… 696

Welcome to the official repository for Batch18! πŸ“šπŸ‘©β€πŸ’» Here, you'll find a organized collection of class notes, assignments, and code snippets generated during our sessions.

HCL
azure-devsecops-batch-17 β˜… 316

Welcome to the official repository for Batch17! πŸ“šπŸ‘©β€πŸ’» Here, you'll find a organized collection of class notes, assignments, and code snippets generated during our sessions.

HCL
azure-devsecops-batch-16 β˜… 154

Welcome to the official repository for our class! πŸ“šπŸ‘©β€πŸ’» Here, you'll find a organized collection of class notes, assignments, and code snippets generated during our sessions.

TypeScript
azure-devsecops-batch-15 β˜… 108

Welcome to the official repository for our class! πŸ“šπŸ‘©β€πŸ’» Here, you'll find a organized collection of class notes, assignments, and code snippets generated during our sessions.

HCL
StreamFlix β˜… 81

πŸŽ₯ StreamFlix 🍿 Your go-to repository for a Netflix-inspired streaming platform. Enjoy top-notch movies and TV shows with sleek design and seamless navigation. Happy streaming! πŸš€πŸ’»

HTML
devopsinsiders β˜… 37

Welcome to DevOpsInsiders, a leading DevOps consulting and training company that helps organizations achieve their DevOps transformation goals. Our company was founded in 2021 by a group of experienced DevOps engineers who saw the need for a more streamlined and efficient approach to software development.

File Explorer

ZIP Download
  • .gitignore
  • azure-pipelines.yml
  • package-lock.json
  • package.json
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

πŸ”

nano

View Details β–Ό

Text editor. An enhanced `pico` clone.
See also: `pico`, `rnano`.

nano {{path/to/file1 path/to/file2 ...}}

Open specific files, moving to the next file after closing the previous one:

nano {{[-I|--ignorercfiles]}}

Start the editor without using configuration files:

nano +{{line}},{{column}} {{path/to/file}}

Open a file and position the cursor at a specific line and column:

πŸ”

npm install

View Details β–Ό

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

πŸ”

npm run

View Details β–Ό

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

πŸ”

apt install

View Details β–Ό

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

// repository documentation