Anki: Unterschied zwischen den Versionen

Aus ahrensburg.city
Zur Navigation springen Zur Suche springen
// via Wikitext Extension for VSCode
// via Wikitext Extension for VSCode
Zeile 1: Zeile 1:
==Anki==
==Anki==
===Express.js===
==Installation und Starten==
====Express.js====
Grundaufbau einer Express.js Anwendung und Installieren von Express.js
Grundaufbau einer Express.js Anwendung und Installieren von Express.js
<pre>
<pre>
Zeile 9: Zeile 10:
app.listen();
app.listen();
</pre>
</pre>
===Django===
====Django====
Grundaufbau einer Django Anwendung und Installieren von Django
Grundaufbau einer Django Anwendung und Installieren von Django
<pre>
<pre>
Zeile 17: Zeile 18:
django-admin startproject Projekt
django-admin startproject Projekt
</pre>
</pre>
===asp net core===
====asp net core====
Grundaufbau einer asp net core Anwendung und Installieren von asp net core mvc
Grundaufbau einer asp net core Anwendung und Installieren von asp net core mvc
<pre>
<pre>
dotnet new mvc -au Individual -o Projekt
dotnet new mvc -au Individual -o Projekt
</pre>
===Moderne javascript funktion erstellen===
Konstante Hallo-Funktion erstellen. Ausgabe von Hallo Welt.
<pre>
const hallo= () => {
    console.log('Hallo Welt');
}
</pre>
</pre>

Version vom 20. Oktober 2024, 20:14 Uhr

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.

const hallo= () => {
    console.log('Hallo Welt');
}