Anki
Anki
Installation und Starten
Express.js
Grundaufbau einer Express.js Anwendung und Installieren von Express.js
npm init npm install express const express = require('express'); const app = express(); app.listen();
Django
Grundaufbau einer Django Anwendung und Installieren von Django
python -m venv .venv source .venv/bin/activate pip install django django-admin startproject Projekt
asp net core
Grundaufbau einer asp net core Anwendung und Installieren von asp net core mvc
dotnet new mvc -au Individual -o Projekt
Moderne javascript funktion erstellen
Konstante Hallo-Funktion erstellen. Ausgabe von Hallo Welt. {{c1::const hallo= () => {}} {{c1::console.log('Hallo Welt'):}} {{c1::}}}