Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/lnsp/nodejs-guestbook
- Owner: lnsp
- License: mit
- Created: 2017-10-05T21:43:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T07:33:27.000Z (about 2 years ago)
- Last Synced: 2024-03-16T14:41:03.520Z (10 months ago)
- Topics: express, guestbook, mongodb, node, nodejs
- Language: HTML
- Homepage:
- Size: 179 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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
```