Coder Social home page Coder Social logo

bookmarks's Introduction

Bookmarks

Bookmarks is a self hostable application for storing bookmarks. It is built with Express 4 and Mongoose. PhantomJs is used to take screen capture of your bookmarks. You need to install it on your server. This application is still in beta.

alt tag

alt tag

Install it

Clone the project:

git clone https://github.com/claireso/bookmarks.git

Install the dependencies

cd bookmarks
npm install

Build scripts

Gulp is used in the project to build scripts

cd gulp
npm install
gulp build

Configure it

Add the config.js file in the root directory

touch config.js

Past this code in the config.js file and complete it

var config = {

    session: {
        secret: ''
    },

    db: {
        development: {
            uri: ''
        },
        production: {
            uri: ''
        }
    },

    mail: {
    
    }

}

// Export config
module.exports = config;

  • secret : a string to protect your session
  • db.development.uri : the uri of your database in development environment (ie : 'mongodb://localhost/bookmarks')
  • db.development.uri : the uri of your database in production environment
  • mail : nodemailer is used to send mail if you forgot your password account. You need to add a SMTP configuration. Check the documentation here.

Create your account

After the configuration of your application and starting your Mongodb server, you need to create your account. For this enter this command line:

node install.js development

Replace 'development' by 'production' if you are in the production environment. You must enter an email and a password.

Then, you can start your application :

npm start

Roadmap

  • Adding mobile compatibility
  • Adding a pagination for the lists (done)

Built with

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.