0.0.1 • Published 5 years ago

bookmarker v0.0.1

Weekly downloads
8
License
MIT
Repository
github
Last release
5 years ago

Travis CI Build Status CodeFactor Score

Bookmarker

NPM

A cross-browser solution to bookmarking a URL.

Importing

From your NodeJS application:

const Bookmarker = require("bookmarker")

From your web application:

<script src="https://unpkg.com/bookmarker/bookmarker.min.js"></script>

Usage

Bookmarker(
    {
        url: "https://example.com", // URL
        title: "Example Website" // Title (Default: Automatically detected)
        useFallBack: true // Show bookmark instructions if needed (Default: True)
    }
)