-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johannes Schiel
committed
Jan 31, 2021
1 parent
1b27537
commit ddc6138
Showing
1 changed file
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,33 @@ | ||
# ud-node-api-tutorial | ||
Code aus dem YouTube Tutorial "Wie nutze ich eine API?" | ||
# Wie arbeitet mit einer API? | ||
Code aus dem YouTube Tutorial "Wie nutze ich eine API?". Um das Script zu starten einfach die folgenden Punkte durchführen: | ||
|
||
### Erstellen einer .env Datei | ||
In der obersten Struktur sollte eine neue Datei erstellt werden: | ||
|
||
``` | ||
- cache | ||
|- youtube.json | ||
- routes | ||
|- youtube.js | ||
- .gitignore | ||
- README.md | ||
- app.js | ||
- package-lock.json | ||
- package.json | ||
+ .env | ||
``` | ||
In dieser Datei sollten anschließend die Variablen wie folgt erweitert werden: | ||
``` | ||
YOUTUBE_ID= --your ID-- | ||
YOUTUBE_KEY= --your KEY-- | ||
PORT=3000 | ||
``` | ||
Anschließend einmal alles installieren | ||
``` | ||
npm i | ||
``` | ||
Und mit dem Befehl, den localen Server starten | ||
``` | ||
npm run start | ||
``` | ||
In deiner Console solltest du dann eine Ausgabe sehen und wenn du auf die URL `http://localhost:3000/youtube` gehst solltest du ein JSON sehen. |