Giter Site home page Giter Site logo

nodebookmarks's Introduction

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 [email protected]

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.

nodebookmarks's People

Contributors

qawemlilo avatar greenkeeperio-bot avatar

Watchers

Joseph Rawson avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.