Skip to content

Commit 85657c5

Browse files
authored
Update README.md
1 parent 0487126 commit 85657c5

File tree

1 file changed

+36
-2
lines changed

1 file changed

+36
-2
lines changed

README.md

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
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.)

0 commit comments

Comments
 (0)