https://github.com/saidsef/node-webserver
Node Application Web Server
https://github.com/saidsef/node-webserver
docker-image hacktoberfest node-web-server web-server
Last synced: 7 months ago
JSON representation
Node Application Web Server
- Host: GitHub
- URL: https://github.com/saidsef/node-webserver
- Owner: saidsef
- License: mit
- Created: 2017-12-26T21:00:47.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2025-05-17T13:54:55.000Z (10 months ago)
- Last Synced: 2025-05-17T14:38:33.048Z (10 months ago)
- Topics: docker-image, hacktoberfest, node-web-server, web-server
- Language: JavaScript
- Homepage:
- Size: 177 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Sample Node Application Web Server
This is a basic `Hello World` node application web server.
This is used to test container platform builds such as Kubernetes and other container schedulers.
## Prerequisites
- Container Platform
## Deployment
To deploy locally:
```shell
docker run -d -p 8080:8080 docker.io/saidsef/node-webserver:latest
```
To deploy in Kubernetes:
```shell
kubectl apply -k ./deployments/
```
```shell
kubectl port-forward svc/server 8080:8080
```
> To access from `Ingress`, remeber to update file `/deployments/ingress.yml` hostname
Then navigate to:
```shell
http://localhost:8080
```
## Source
Our latest and greatest source of Jenkins can be found on [GitHub](#deployment). Fork us!
## Contributing
We would :heart: you to contribute by making a [pull request](https://github.com/saidsef/node-webserver/pulls).
Please read the official [Contribution Guide](./CONTRIBUTING.md) for more information on how you can contribute.