https://github.com/bogdaaamn/nodejs-hello-world
Simple Node.js Hello World example
https://github.com/bogdaaamn/nodejs-hello-world
express hello-world nodejs
Last synced: 5 months ago
JSON representation
Simple Node.js Hello World example
- Host: GitHub
- URL: https://github.com/bogdaaamn/nodejs-hello-world
- Owner: bogdaaamn
- Created: 2019-02-17T13:15:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-17T18:43:37.000Z (over 7 years ago)
- Last Synced: 2025-02-09T04:24:39.582Z (over 1 year ago)
- Topics: express, hello-world, nodejs
- Language: JavaScript
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello World, Node.js
A really simple Node.js application that responds to `GET /` with `Hello dev.to!`. It is for demonstrative reasons in [Run your Node.js application on a headless Raspberry Pi](https://dev.to/bogdaaamn/run-your-nodejs-application-on-a-headless-raspberry-pi-4jnn) article on [dev.to](https://dev.to).
## Installing
Clone this repo.
```bash
git clone https://github.com/BogDAAAMN/nodejs-hello-world
cd nodejs-hello-world
```
## Running
### Node.js
```bash
node app.js
```
### PM2
```bash
pm2 start app.js
```
## Further read
More about the reasoning behind you can find [here](https://dev.to/bogdaaamn/run-your-nodejs-application-on-a-headless-raspberry-pi-4jnn).