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.
- Host: GitHub
- URL: https://github.com/autumnchris/local-library-catalog
- Owner: autumnchris
- Created: 2021-06-09T19:17:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-10T01:01:01.000Z (3 months ago)
- Last Synced: 2025-02-10T02:20:40.527Z (3 months ago)
- Topics: css, ejs, express, expressjs, full-stack, fullstack-javascript, javascript, library-catalog, local-library, mdn, mongodb, mongoose, nodejs, the-odin-project, theodinproject
- Language: JavaScript
- Homepage: https://autumnchris-local-library-catalog.onrender.com/catalog
- Size: 72.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.