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

https://github.com/autumnchris/local-library-catalog

An Express.js app that adds, deletes, edits, and displays library catalog information such as books, authors, genres, and book copies from a MongoDB database.
https://github.com/autumnchris/local-library-catalog

css ejs express expressjs full-stack fullstack-javascript javascript library-catalog local-library mdn mongodb mongoose nodejs the-odin-project theodinproject

Last synced: 3 months ago
JSON representation

An Express.js app that adds, deletes, edits, and displays library catalog information such as books, authors, genres, and book copies from a MongoDB database.

Awesome Lists containing this project

README

        

# Local Library Catalog

An Express.js app that adds, deletes, edits, and displays library catalog information such as books, authors, genres, and book copies from a MongoDB database.

---

## Built With
* [Express.js](https://expressjs.com)
* [Node.js](https://nodejs.org/en)
* JavaScript
* [Mongoose](https://mongoosejs.com)
* [MongoDB](https://www.mongodb.com)
* CSS3
* HTML5
* [EJS](https://ejs.co)
* [validator.js](https://github.com/validatorjs/validator.js)
* [Moment.js](https://momentjs.com)
* [dotenv](https://github.com/motdotla/dotenv)
* [Normalize.css](https://necolas.github.io/normalize.css)
* [Font Awesome](https://fontawesome.com)
* [nodemon](https://nodemon.io)

## Demo

View project demo at [https://autumnchris-local-library-catalog.onrender.com/catalog](https://autumnchris-local-library-catalog.onrender.com/catalog).

## Instructions

After forking and cloning, navigate to the repository in your command line and install the NPM packages:
```
npm install
```

Create a `.env` file in the root of the repository and add the following variables:
```
MONGO_URI=
```

Run the following script in your command line if starting the repository in development mode:
```
npm run dev
```

Run the following script in your command line if starting the repository in production mode:
```
npm start
```

Once the server is running, go to `http://localhost:3000` in your browser.