Skip to content

Shra2703/Doogle-Keep-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

4 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Doogle-Keep-App

Trying to make Clone of google keep app with the help of html-css-javascript and used localstorage also to store the data. This application can basically add the notes, delete them, edit and save those notes.

πŸ”— Link : shra2703.github.io/Doogle-Keep-App/

Screenshot (170)

πŸ’» Functionality:

1)Adding the note with the help of ADD NOTE BUTTON.

Screenshot (171)

2)Writeing anything and saving the text with the help of SAVE BUTTON and again by Clicking the same save button we can edit the saved text.

Screenshot (172)

3)Can also delete the saved text with the delete button at top.

Screenshot (173)_LI

πŸ’Ύ Storage:

LocalStorage is used for storing the data

// to set the item in the local Storage
const saveChanges = () => {
    const textAreaData = document.querySelectorAll('textarea');
    const notes = [];

    textAreaData.forEach((note) => {
       return notes.push(note.value);
    })
    console.log(notes);
    localStorage.setItem('notes', JSON.stringify(notes));
}
// getting data from the local storage
const notes = JSON.parse(localStorage.getItem('notes'));

  if(notes) {
      notes.forEach((note) => addNewNote(note));
  }
});

About

Trying to make Clone of google keep app with the help of html-css-javascript and use localstorage also.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published