Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8862717
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:47:43+00:00 2026-06-14T15:47:43+00:00

Browsing through http://microjs.com , I see lots of libraries labelled event emitters. I like

  • 0

Browsing through http://microjs.com, I see lots of libraries labelled “event emitters”. I like to think I know my way around the basics of the Javascript language pretty well, but I really have no idea what an “event emitter” is or does.

Anyone care to enlighten me? It sounds interesting…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T15:47:45+00:00Added an answer on June 14, 2026 at 3:47 pm

    It triggers an event to which anyone can listen. Different libraries offer different implementations and for different purposes, but the basic idea is to provide a framework for issuing events and subscribing to them.

    Example from jQuery:

    // Subscribe to event.
    $('#foo').bind('click', function() {
        alert("Click!");
    });
    
    // Emit event.
    $('#foo').trigger('click');
    

    However, with jQuery in order to emit an event you need to have a DOM object, and cannot emit events from an arbitrary object. This is where event-emitter becomes useful. Here’s some pseudo-code to demo custom events (the exact same pattern as above):

    // Create custom object which "inherits" from emitter. Keyword "extend" is just a pseudo-code.
    var myCustomObject = {};
    extend(myCustomObject , EventEmitter);
    
    // Subscribe to event.
    myCustomObject.on("somethingHappened", function() { 
        alert("something happened!");
    });
    
    // Emit event.
    myCustomObject.emit("somethingHappened");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was browsing through one site called BSEINDIA.com ( http://www.bseindia.com/stockreach/stockreach.htm?scripcd=532667 ), i Noticed that
I am browsing trough the CI documentation particularly http://codeigniter.com/user_guide/libraries/pagination.html . First thing that was
I have two URLs: http://s140452.gridserver.com/view-pullsheet/ https://s140452.gridserver.com/locations/ When browsing through any properties on the locations
while browsing through a queue examples, I came across http://login2win.blogspot.in/2008/07/c-queues.html Its a queue example
I was browsing through the ICU source code ( http://icu-project.org/ ), and I couldn't
While browsing through source code in my IDE I'll sometimes wish I could see
I have been browsing through Google for various explanations but I STILL couldn't figure
As I'm browsing through a Rails source code, it contains the line: @@autoloads =
I was browsing through Windows's Platform SDK header files (what a life, right?), and
I've been browsing through all of the CSS related cross-browser questions trying to troubleshoot

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.