Code Monkey home page Code Monkey logo

ecommerce_app's People

Contributors

adarshsaraogi avatar

Watchers

 avatar  avatar

ecommerce_app's Issues

Setup Airbrake for your Node application

Install Airbrake in 2 easy steps:

Step 1: Add the library

Add the Airbrake error notifier to your package.json then run npm install from your project's directory:

{
  "dependencies": {
    "airbrake-js": "^1.4.6"
  }
}

Or install the notifier manually

Step 2: Configure the library

This is a simple Node app app.js file that throws an error and sends it to Airbrake. To configure Airbrake in your project, just require the airbrake-js library and instantiate the client as shown:

(You can find your project ID and API key with your project's settings):

var http = require('http');
var AirbrakeClient = require('airbrake-js');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
  throw new Error('I am an uncaught exception');
}).listen(8080);

console.log('Server running on port 8080.');

var airbrake = new AirbrakeClient({
  projectId: <Your project ID>,
  projectKey: '<Your project API key>'
});

For our full Node example app code and more information, please visit our official GitHub repo.

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.