Giter Site home page Giter Site logo

bug-reporter's Introduction

bug-reporter

Build Status

Polymer 1.x form for bug reporting in SPA's

Captures:

  • Name of user, email of user and a user provided description of the issue.
  • Any stack traces of errors captured by window.onerror.
    • These are the same stack traces you would see in the browser console when an error is thrown.
  • The current date.
  • Some basic system info:
    • Browser vendor and version.
    • OS vendor and version.

Installation

$ bower install --save bug-reporter

Basic Usage

<button id="report-bug">Report a Bug</button>
<bug-reporter url="https://my-api.com/bug"></bug-reporter>

<script>
  window.onload = () => {
    document.querySelector('report-bug').addEventListener('click', () => {
      document.querySelector('bug-reporter').toggle()        
    })
  }
</script>

When the user fills in the required information and clicks "Submit", the form will issue a POST request to the provided url in the following format:

method: `POST`,
body: '{
  "name": "John Doe",
  "email": "[email protected]",
  "description": "Lorem ipsum dolor\nsit amet.",
  "datetime": "Thu Feb 22 2018 04:26:05 GMT+0200 (EET)",
  "stackTraces": [],
  "system": {
    "ua": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36",
    "browser": {
      "name": "Chrome",
      "version": "64.0.3282.140",
      "major": "64"
    },
    "engine": {
      "name": "WebKit",
      "version": "537.36"
    },
    "os": {
      "name": "Mac OS",
      "version": "10.12.6"
    },
    "device": {},
    "cpu": {}
  },
  "url": "https://foo-app.com"
}'

View documentation

Install the Polymer-CLI

First, make sure you have the Polymer CLI installed.

Then run:

$ polymer serve

to serve the element documentation.

Running Tests

$ polymer test

Authors

License

  • MIT

bug-reporter's People

Contributors

nicholaswmin avatar

Stargazers

 avatar

Watchers

 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.