Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdecker-mobilecomputing/nodejs_express_kfzkennzeichen
This repository contains two variants of a simple web application with a backend based on express for Node.js.
https://github.com/mdecker-mobilecomputing/nodejs_express_kfzkennzeichen
ajax express-js github-actions nodejs
Last synced: 6 days ago
JSON representation
This repository contains two variants of a simple web application with a backend based on express for Node.js.
- Host: GitHub
- URL: https://github.com/mdecker-mobilecomputing/nodejs_express_kfzkennzeichen
- Owner: MDecker-MobileComputing
- License: bsd-3-clause
- Created: 2018-12-16T19:40:42.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-17T11:20:11.000Z (8 months ago)
- Last Synced: 2024-04-13T23:08:59.096Z (7 months ago)
- Topics: ajax, express-js, github-actions, nodejs
- Language: JavaScript
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Webapp mit Node.js-Backend #
This repository contains two variants of a simple web-app (without and with
[Ajax](https://en.wikipedia.org/wiki/Ajax_(programming))) with a backend
based on [express](https://www.npmjs.com/package/express) for *Node.js*.
The usecase of both variants of the app is it to perform queries on a tiny subset of
the German codes for vehicle registration plates (e.g. code "B" stands for "Berlin").
----
## Running the application ##
After cloning or downloading the repository you have to download express and its dependencies by
executing the following command:
````
npm install
````To start the server component of the application in the variant *without Ajax* you have to
execute the script "ohne" (German for "without"):
````
npm run ohne
````After this you can open the web application at http://localhost:8080 .
For starting the server component in the variant *with Ajax* (make sure that the other variant
is no longer running) you have to execute the script "mit" (German for "with"):
````
npm run mit
````This variant of the web application is also to be accessed at http://localhost:8080 .
The dependencies and the two scrips "ohne" and "mit" are both defined in the file `package.json`.
----
## License ##
See the [LICENSE file](LICENSE.md) for license rights and limitations (BSD 3-Clause License)
for the files in this repository.The Ajax variant of the application contains [jQuery](https://jquery.org) which is published
under the terms of [MIT license](https://jquery.org/license/).