Änderungen

Zur Navigation springen Zur Suche springen
285 Bytes hinzugefügt ,  20:38, 7. Jan. 2019
Zeile 67: Zeile 67:     
Projektverzeichnis erstellen und für GIT initialisieren:
 
Projektverzeichnis erstellen und für GIT initialisieren:
   export PROJ_DIR=~/myprojects/myfrontend
+
   export PROJ_DIR=~/myprojects/myproject
 
   mkdir "$PROJ_DIR"
 
   mkdir "$PROJ_DIR"
 
   cd "$PROJ_DIR"
 
   cd "$PROJ_DIR"
 
   git init
 
   git init
   −
React-App-Verzeichnis erstellen
+
Die Datei <code>.gitignore</code> erstellen:
   cd "PROJ_DIR"
+
   frontend/node_modules
  create-react-app myapp
     −
TypeScript hinzufügen:
+
React-App-Verzeichnisstruktur erstellen (mit Typescript<ref>Vgl. https://medium.com/byteconf/getting-started-with-typescript-in-create-react-app-2306b713088f</ref>):
   cd myapp
+
   cd "$PROJ_DIR"
   npm install --save typescript @types/node @types/react @types/react-dom @types/jest
+
   npx create-react-app frontend --typescript
    +
== Projekt im Entwicklungsmodus starten ==
    +
  cd "$PROJ_DIR"
 +
  npm start
    +
== Tests laufen lassen ==
 +
  cd "$PROJ_DIR"
 +
  npm test
 +
 +
== Projekt bauen ==
 +
  cd "$PROJ_DIR"
 +
  npm run build
 +
 
 
    
 
    
  

Navigationsmenü