cheddarmonk / super-duper-hepta-journey

Group Repository for CIS-486
https://super-duper-hepta-journey.herokuapp.com/
2 stars 3 forks source link
javascript nodejs

Welcome to the Super-Duper-Hepta-Journey!

Some useful links to help you find what you need.

User Story (Story Points = MedπŸ‘•)

As a end user of a NodeJs Occasion and gift tracker application

I want to use the application on the web and mobile devices like this one πŸ‘

So That I don't have to use sticky notes, third party calendar apps, and paper notes to keep up with birthdays, wedding anniversaries, and other important dates and the gifts supplied for these events.

Comments/Steps to implement πŸ₯‡

Disclaimer The steps and procedures in this project were performed using Visual Studio Code, NodeJS, Express web framework, and MongoDB. For data dependencies, libraries, and code editing choose any environment you are most comfortable and familiar with.

Setup Nodejs and Express and MongoDB

Create Project in Visual Code(VSCode)

Connecting to Mongo Atlas

Code the app

const update = document.querySelector('#update-button')
const deleteButton = document.querySelector('#delete-button')
const messageDiv = document.querySelector('#message')

update.addEventListener('click', _ => {
  fetch('/quotes', {
    method: 'put',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify({
      name: 'Sally',
      quote: 'Birthday, CakePoper, 2012.'
    })
  })

Test app Locally

image

Deploy App to Hosting Service

Acceptance Criteria