An open API service indexing awesome lists of open source software.

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

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).