Skip to content

Mindfulnote is a note taking website that allows users to take notes and create written documents. It was built in 2 weeks. User's can create notes, edit notes, create notebooks to organize notes and tag them to help with organization.

Notifications You must be signed in to change notification settings

eamrhein/MindfulNote

Repository files navigation

License: MIT

Mindfulnote

An Evernote clone built on React/Redux, Ruby on Rails and hosted on Heroku

Welcome Mindfulnote is a note taking website that allows users to take notes and create written documents. It was built in 2 weeks. User's can create notes, edit notes, create notebooks to organize notes and tag them to help with organization.

Key Features

  • Notes
    • Create and Edit notes in real time.
    • Documents are already Saved
    • Rich Text
  • Notebooks
    • Organize Notes By Notebooks.
    • Can Be deleted.
  • Tags
    • Notes can be tagged with a label to better organize them
  • User Authentication
    • Users can create a new account or login with an existing one.
    • Password are hashed using bcrypt and errors are rendered when a form is filled in incorrectly

Technologies

Code Features

Auto Saving using an Async callback event handler

class NoteDetailForm extends React.Component {
  constructor(props) {
    super(props)
    ...
    this.timeout = 0;
    this.handleBodyChange = this.handleBodyChange.bind(this);
    this.changeNote = this.changeNote.bind(this);
  }
  ...
  handleSubmit() {
      const { updateNote } = this.props;
      if (this.timeout) clearTimeout(this.timeout);
      this.timeout = setTimeout(() => {
        updateNote(this.state);
      }, 1000);
    }
 }

About

Mindfulnote is a note taking website that allows users to take notes and create written documents. It was built in 2 weeks. User's can create notes, edit notes, create notebooks to organize notes and tag them to help with organization.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published