npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

feedback-form-tool

v0.0.1

Published

Website feedback tool.

Downloads

8

Readme

feedback

Feedback tool similar to the Google Feedback based on jQuery and HTML2Canvas.

Usage

Load jQuery, the plugin, and its CSS:

    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
	<script src="feedback.js"></script>
	<link rel="stylesheet" href="feedback.min.css" />

Init plugin:

    <script type="text/javascript">
        $.feedback({
            ajaxURL: 'http://test.url.com/feedback'
        });
    </script>

Requirements

  • jQuery

Compatibility

Pretty much it should be working on any browser with canvas support. Browsers with no canvas support won't display the feedback button.

Demo

http://ivoviz.github.io/feedback/ - Click "Send feedback" at the bottom right of the page.

Post Data

The information from the client will be sent through ajax post request. The information is in JSON format.

  • post.browser - Browser information.
  • post.url - The page URL.
  • post.note - Description of the feedback.
  • post.img - The screenshot of the feedback. - base64 encoded data URI!
  • post.html - The structure of the page.

Options

ajaxURL (String)

The URL where the plugin will post the screenshot and additional informations. (JSON datatype)

Default: ''

postBrowserInfo (Boolean)

Whether you want your client to post their browser information (such as useragent, plugins used, etc.)

Default: true

postHTML (Boolean)

Whether you want your client to post the page's HTML structure.

Default: true

postURL (Boolean)

Whether you want your client to post the URL of the page.

Default: true

proxy (String)

Url to the proxy which is to be used for loading cross-origin images. If left empty, cross-origin images won't be loaded.

Default: ''

letterRendering (Boolean)

Whether to render each letter seperately. Necessary if letter-spacing is used.

Default: false

initButtonText (String / HTML)

The default button text.

Default: Send feedback

strokeStyle (String / HEX color)

The color of the highlight border. You can use values either like 'black', 'red', etc. or HEX codes like '#adadad'.

Default: black

shadowColor (String / HEX color)

The color of the shadow.

Default: black

shadowOffsetX / shadowOffsetY (Integer)

Sets the horizontal / vertical distance of the shadow from the shape.

Default: 1

shadowBlur (Integer)

The blur level for the shadow.

Default: black

lineJoin (String)

Sets the type of corner created, when two lines meet.

Default: bevel

lineWidth (Integer)

Sets border of the highlighted area.

Default: 3

Default: html2canvas.js

tpl.description / tpl.highlighter / tpl.overview / tpl.submitSuccess / tpl.submitError (String / HTML)

The template of the plugin. You could change it any time, but keep in mind to keep the elements' ids and classes so the script won't break.

Default: ...

onClose (Function)

Function that runs when you close the plugin.

Default: null

screenshotStroke (Boolean)

Changing to false will remove the borders from the highlighted areas when taking the screenshot.

Default: true

highlightElement (Boolean)

By default when you move your cursor over an element the plugin will temporarily highlight it until you move your cursor out of that area. I'm not exactly sure whether it's a good thing or not, but Google has it, so yeah.

Default: true

initialBox (Boolean)

By Setting this true the user will have to describe the bug/idea before being able to highlight the area.

Default: false

feedbackButton (String)

Define a custom button instead of the default button that appears on the lower right corner.

Default: .feedback-btn

showDescriptionModal (Boolean)

Sets whether the next modal for entering description should appear or not

Default: true

onScreenshotTaken (Function)

A callback function to be called when clicking on take screenshot button. The callback function's prototype is function(post)

Default: {}

isDraggable (Boolean)

Sets whether the user will be able to drag the feedback options modal or not

Default: true

License

feedback is released under the MIT license. (See LICENSE)