File tree Expand file tree Collapse file tree 1 file changed +36
-2
lines changed
Expand file tree Collapse file tree 1 file changed +36
-2
lines changed Original file line number Diff line number Diff line change 1- # TypeScriptPasswordGenerator
2- TypeScript Password Generator – Quick Start
1+ # TypeScript Password Generator – Quick Start
2+
3+ ## Voraussetzungen
4+
5+ - [ Node.js] ( https://nodejs.org/ ) (empfohlen: Version 18 oder neuer)
6+ - TypeScript & ts-node als Dev-Abhängigkeiten im Projekt
7+
8+ ## Installation
9+
10+ 1 . ** Projekt herunterladen oder Repository klonen**
11+
12+ ``` yarn
13+ git clone https://github.com/DEIN_USERNAME/ts-password-generator.git
14+ cd ts-password-generator
15+ ```
16+
17+ ---
18+
19+ ---
20+
21+ > Abhängigkeiten Installieren
22+
23+ ```
24+ npm install
25+ npx ts-node index.ts
26+ npx ts-node index.ts 20
27+ ```
28+
29+ > Hinweise
30+ Starte das Tool niemals direkt mit node index.ts, sondern immer mit npx ts-node index.ts ...
31+
32+ ``` yarn
33+ "type": "module" in package.json nicht verwenden
34+ ```
35+
36+ > Du kannst den Code beliebig anpassen (Zeichensätze, Optionen etc.)
You can’t perform that action at this time.
0 commit comments