Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lnsp/nodejs-guestbook

A guestbook implementation using Express, mongo and pug.
https://github.com/lnsp/nodejs-guestbook

express guestbook mongodb node nodejs

Last synced: 3 months ago
JSON representation

A guestbook implementation using Express, mongo and pug.

Awesome Lists containing this project

README

        

# nodejs-guestbook

A simple web guestbook build using NodeJS, the Express web framework, Bootstrap 4 and MongoDB.

## Installation
```bash
$ git clone https://github.com/lnsp/nodejs-guestbook
$ cd nodejs-guestbook
$ npm install
```

## Running the server
```bash
$ export PORT=8080 # set the http port
$ export DATABASE_URL="mongodb://my-database:27017/guestbook" # set the database url
$ npm start
```