This repo contains some web abb skeleton projects for classes taught at Fachhochschule Kiel.
For all projects make sure you have NodeJS 10 and npm installed.
/backend
A simple nodejs backend.
To install run:
npm install
To start the server for development run:
npm start
This will run the server and restart it on code changes in the src
directory.
Start coding in src/index.js
/browser
A primitive web app stub without any frameworks.
To install run:
npm install
To start the app for development on port :8080
run
npm start
This will open a browser window. The page will reload on code changes.
Start coding in src/index.js
/react
A plain react web app stub.
To install run:
npm install
To start the app for development on port :8080
run
npm start
This will open a browser window. The page will reload on code changes.
Start coding in src/index.jsx
Another option is using create-react-app
elm
A very basic elm application.
You needn't install any packages to run this app. Elm caches all packages and the elm make
command will
install dependencies for you. What you will need to install is elm-live:
npm install --global elm elm-live
To start the app for development on port :8000
run
./start
You can also consider using create-elm-app