This is the final project for our CSE341 class. It is an online bookstore application. Check it our on render: https://ebookstore-s1o5.onrender.com
- Install dependencies:
npm install- Start the production server:
npm start- Start the development server
npm run devsrc/
├── models/
├── views/
├── controllers/
├── database/
Please follow best practices when contributing to the project. The linter we're using is ESLint, as well as Prettier to format the code. Run the linter using
npm run lintTo format the code
npm run format