Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1003 Bytes

README.md

File metadata and controls

46 lines (36 loc) · 1003 Bytes

Bear Crew Notes v0.1

Bear Crew Notes is a small web application for creating notes and store them on server. Frontend is built with React and Redux. Backend uses node.js + Express and MongoDB. Also we use rich text editor called Megadraft – can be replaced with any Draft.js editor.

Bear Crew Notes

Available features:

  • Adding and deleting notes
  • Searching through the notes
  • Adding images
  • Sign in
  • Sign up

Editing text:

  • Bold
  • Italic
  • Unorderd list
  • Ordered list
  • Headers
  • Media content

In the future updates:

  • Editing profile
  • Our own rich text editor
  • Sharing notes
  • PDF export
  • Tags

Installation

First of all you have to install MongoDB, then start the server:

$ git clone https://github.com/bear-crew/notes
$ cd notes/server
$ npm install
$ node server

and the application itself

$ cd notes/client
$ npm install
$ npm start