Programming

C# Basics Cheat Sheet

Here is a C# Basics Cheat Sheet covering fundamental concepts, syntax, and examples. 1. Hello World (Basic Syntax) using System; class Program { static void Main() { Console.WriteLine(“Hello, World!”); //…

Read more

TypeScript Basics Cheat Sheet

1. Installation and Setup Install TypeScript (Globally): npm install -g typescript Check Version: tsc -v Initialize TypeScript Project (Creates tsconfig.json): tsc –init 2. Compile TypeScript to JavaScript tsc index.ts Compiles…

Read more

AngularJS Basics Cheat Sheet

1. Installation and Setup CDN (Quick Start) Add AngularJS to your HTML: <script src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js”></script> 2. Basic AngularJS Application <!DOCTYPE html> <html ng-app=”myApp”> <head> <title>AngularJS App</title> </head> <body> <div ng-controller=”MainController”> <h1>{{…

Read more

Ember.js Basics Cheat Sheet

1. Installation and Setup Install Ember CLI (Globally): npm install -g ember-cli Create a New Ember Project: ember new my-ember-app cd my-ember-app ember serve Visit: http://localhost:4200 2. Project Structure (Key…

Read more

Vue.js Basics Cheat Sheet

1. Installation and Setup Option 1: CDN (Quick Start) <script src=”https://cdn.jsdelivr.net/npm/vue@3.2.36″></script> <div id=”app”>{{ message }}</div> <script> const app = Vue.createApp({ data() { return { message: ‘Hello, Vue!’ } } }).mount(‘#app’);…

Read more

Node.js Basics Cheat Sheet

1. Installation Download and Install: https://nodejs.org/ Check Installation: node -v # Node.js version npm -v # npm (Node Package Manager) version 2. Running Node.js Interactive Mode (REPL): node Type JavaScript…

Read more

Express.js Basics Cheat Sheet

1. Installation Prerequisites: Install Node.js from https://nodejs.org/ Install Express Globally: npm install express-generator -g Create Express App: express myapp cd myapp npm install npm start 2. Create a Simple Express…

Read more