Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

qawemlilo/nodebookmarks

Repository files navigation

Bookmark Manager

Bookmark Manager is a Single Page Web Application for managing browser bookmarks. The front-end uses, RequireJS, backbone, and twitter bootstrap - the back-end runs on Node.JS.

A bit of history

A while ago I created a bookmarking app which was basically a hack that saved all bookmarks on a Google Docs spreadsheet. The app stopped working when the number of my bookmarks got too large. This made me decide to create a more polished app that other people could also use. The fundamental goal is to make Bookmark Manager useful and dead simple to use.

Back End

The application back-end uses 2 models, Users Model and Bookmarks Model.

  • The Users Model API handles CRUD operations on users collection for both logged in users and guest users

  • The Bookmarks Model API handles CRUD operations on bookmarks collection for logged in users (demo bookmarks being the only ones accessible to the public)

Users Model

Logged in users

Logged users interact with the Users Model in several ways:

  1. When they view their account information (READ)
GET /user
  1. When they edit their account information (UPDATE)
PUT /user/:id
  1. When they delete their account (DELETE)
// read id from session
POST /user/delete
  1. When they logout(Not a CRUD operation but we place it here for organisational purposes)
GET /user/logout

Guest users (Back-end)

Guest users can interact with the Users Model in following ways:

  1. When they create an account (CREATE)
POST /user
  1. When login (READ)
POST /user/login

Bookmarks Model

Logged in users

Logged users perform all available CRUD operations on the bookmarks collection:

  1. When they create a new bookmark (CREATE)
POST /bookmarks
  1. When they edit a bookmark (UPDATE)
PUT /bookmarks/:id
  1. When they delete a bookmark (DELETE)
DELETE /bookmarks/:id
  1. When they fetch bookmarks (READ)
GET /bookmarks

Guest users

Guest users can only view the demo page which reads the data from an account that I created:

  1. When they fetch bookmarks (READ)
GET /bookmarks

License

(MIT License)

Copyright (c) 2012 Qawelesizwe Mlilo qawemlilo@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Single Page Web Application for managing browser bookmarks

Resources

Stars

Watchers

Forks

Packages

No packages published