Skip to content

web delopment project skeletons for classes given at FH Kiel

Notifications You must be signed in to change notification settings

mjleehh/web-project-skeleton

Repository files navigation

FH Kiel Web App Development Skeletons

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.

Simple NodeJS Backend

/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

Plain Web App

/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 Web App

/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 Web 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

About

web delopment project skeletons for classes given at FH Kiel

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published